summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-04-26 14:13:23 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-04-26 14:13:23 +0000
commit4ba332309f5790d8aea993c42479fc752dc7355b (patch)
tree28d918182052b4ffac6be6decf1ce0809d891005
parentc16cfbf44705e261ed84e3d6d6b3796c3bd34b68 (diff)
downloadlasso-4ba332309f5790d8aea993c42479fc752dc7355b.tar.gz
lasso-4ba332309f5790d8aea993c42479fc752dc7355b.tar.xz
lasso-4ba332309f5790d8aea993c42479fc752dc7355b.zip
8 SatusCode were added
-rw-r--r--lasso/xml/strings.c12
-rw-r--r--lasso/xml/strings.h8
2 files changed, 18 insertions, 2 deletions
diff --git a/lasso/xml/strings.c b/lasso/xml/strings.c
index fadc3c47..c0135abb 100644
--- a/lasso/xml/strings.c
+++ b/lasso/xml/strings.c
@@ -48,8 +48,16 @@ const xmlChar lassoLibAuthnContextComparisonMinimum[] = "minimum";
const xmlChar lassoLibAuthnContextComparisonBetter[] = "better";
/* StatusCodes */
-const xmlChar lassoLibStatusCodeFederationDoesNotExist[] = "lib:FederationDoesNotExist";
-const xmlChar lassoLibStatusCodeNoPassive[] = "lib:NoPassive";
+const xmlChar lassoLibStatusCodeFederationDoesNotExist[] = "lib:FederationDoesNotExist";
+const xmlChar lassoLibStatusCodeInvalidAssertionConsumerServiceIndex[] = "lib:InvalidAssertionConsumerServiceIndex";
+const xmlChar lassoLibStatusCodeInvalidSignature[] = "lib:InvalidSignature";
+const xmlChar lassoLibStatusCodeNoAuthnContext[] = "lib:NoAuthnContext";
+const xmlChar lassoLibStatusCodeNoAvailableIDP[] = "lib:NoAvailableIDP";
+const xmlChar lassoLibStatusCodeNoPassive[] = "lib:NoPassive";
+const xmlChar lassoLibStatusCodeNoSupportedIDP[] = "lib:NoSupportedIDP";
+const xmlChar lassoLibStatusCodeProxyCountExceeded[] = "lib:ProxyCountExceeded";
+const xmlChar lassoLibStatusCodeUnknownPrincipal[] = "lib:UnknownPrincipal";
+const xmlChar lassoLibStatusCodeUnsignedAuthnRequest[] = "lib:UnsignedAuthnRequest";
/* ProtocolProfile */
const xmlChar lassoLibProtocolProfileArtifact[] = "http://projectliberty.org/profiles/brws-art";
diff --git a/lasso/xml/strings.h b/lasso/xml/strings.h
index b72c674e..8dbefcc9 100644
--- a/lasso/xml/strings.h
+++ b/lasso/xml/strings.h
@@ -57,7 +57,15 @@ LASSO_EXPORT_VAR const xmlChar lassoLibAuthnContextComparisonBetter[];
/* StatusCodes */
LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeFederationDoesNotExist[];
+LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeInvalidAssertionConsumerServiceIndex[];
+LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeInvalidSignature[];
+LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeNoAuthnContext[];
+LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeNoAvailableIDP[];
LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeNoPassive[];
+LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeNoSupportedIDP[];
+LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeProxyCountExceeded[];
+LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeUnknownPrincipal[];
+LASSO_EXPORT_VAR const xmlChar lassoLibStatusCodeUnsignedAuthnRequest[];
/* ProtocolProfile */
LASSO_EXPORT_VAR const xmlChar lassoLibProtocolProfileArtifact[];