-rw-r--r-- | include/opkele/uris.h | 1 | ||||
-rw-r--r-- | lib/sreg.cc | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/opkele/uris.h b/include/opkele/uris.h index 3243831..56c2d6d 100644 --- a/include/opkele/uris.h +++ b/include/opkele/uris.h @@ -7,4 +7,5 @@ #define OIURI_OPENID20 "http://specs.openid.net/auth/2.0" +#define OIURI_SREG11 "http://openid.net/extensions/sreg/1.1" #define STURI_OPENID10 "http://openid.net/signon/1.0" diff --git a/lib/sreg.cc b/lib/sreg.cc index 60dc691..dd7ed12 100644 --- a/lib/sreg.cc +++ b/lib/sreg.cc @@ -1,4 +1,5 @@ #include <opkele/exception.h> #include <opkele/sreg.h> +#include <opkele/uris.h> #include <algorithm> @@ -40,4 +41,5 @@ namespace opkele { } } + p["sreg.ns"] = OIURI_SREG11; if(!fr.empty()) p["sreg.required"]=fr; if(!fo.empty()) p["sreg.optional"]=fo; |