summaryrefslogtreecommitdiffabout
path: root/include/opkele/ax.h
Unidiff
Diffstat (limited to 'include/opkele/ax.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/ax.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/opkele/ax.h b/include/opkele/ax.h
index 996d756..ba629c1 100644
--- a/include/opkele/ax.h
+++ b/include/opkele/ax.h
@@ -8,14 +8,14 @@
8 8
9#include <opkele/extension.h> 9#include <opkele/extension.h>
10 10
11namespace opkele { 11namespace opkele {
12 12
13 /** 13 /**
14 * OpenID simple registration extension implementation 14 * OpenID attribute exchange extension implementation
15 * http://openid.net/specs/openid-simple-registration-extension-1_0.html 15 * http://openid.net/specs/openid-attribute-exchange-1_0.html
16 */ 16 */
17 class ax_t : public extension_t { 17 class ax_t : public extension_t {
18 public: 18 public:
19 /** special "count" value for add_attribute to request fetching "as many values as possible". */ 19 /** special "count" value for add_attribute to request fetching "as many values as possible". */
20 static const int UNLIMITED_COUNT = -1; 20 static const int UNLIMITED_COUNT = -1;
21 21
@@ -77,8 +77,8 @@ namespace opkele {
77 77
78 /** Stores results from fetch response during id_res. */ 78 /** Stores results from fetch response during id_res. */
79 std::map<std::string, std::vector<std::string> > response_attrs; 79 std::map<std::string, std::vector<std::string> > response_attrs;
80 }; 80 };
81} 81}
82 82
83#endif /* __OPKELE_SREG_H */ 83#endif /* __OPKELE_AX_H */
84 84