Added arg protocolProfile in fct lasso_build_full_authnRequest()

This commit is contained in:
Valery Febvre 2004-04-01 13:27:11 +00:00
parent db6d145bac
commit 98c97ca26f
2 changed files with 8 additions and 0 deletions

View File

@ -29,6 +29,7 @@ LassoNode *lasso_build_authnRequest(const xmlChar *providerID,
const xmlChar *nameIDPolicy,
const xmlChar *forceAuthn,
const xmlChar *isPassive,
const xmlChar *protocolProfile,
const xmlChar *assertionConsumerServiceID,
const xmlChar **authnContextClassRefs,
const xmlChar **authnContextStatementRefs,
@ -46,6 +47,7 @@ LassoNode *lasso_build_authnRequest(const xmlChar *providerID,
nameIDPolicy,
forceAuthn,
isPassive,
protocolProfile,
assertionConsumerServiceID,
authnContextClassRefs,
authnContextStatementRefs,
@ -64,6 +66,7 @@ LassoNode *lasso_build_full_authnRequest(const xmlChar *requestID,
const xmlChar *nameIDPolicy,
const xmlChar *forceAuthn,
const xmlChar *isPassive,
const xmlChar *protocolProfile,
const xmlChar *assertionConsumerServiceID,
const xmlChar **authnContextClassRefs,
const xmlChar **authnContextStatementRefs,
@ -128,6 +131,10 @@ LassoNode *lasso_build_full_authnRequest(const xmlChar *requestID,
if(isPassive != NULL) {
lasso_lib_authn_request_set_isPassive(LASSO_LIB_AUTHN_REQUEST(request), isPassive);
}
if(protocolProfile != NULL) {
lasso_lib_authn_request_set_protocolProfile(LASSO_LIB_AUTHN_REQUEST(request), protocolProfile);
}
if(assertionConsumerServiceID != NULL) {
lasso_lib_authn_request_set_assertionConsumerServiceID(LASSO_LIB_AUTHN_REQUEST(request),

View File

@ -35,6 +35,7 @@ LassoNode *lasso_build_authnRequest(const xmlChar *providerID,
const xmlChar *nameIDPolicy,
const xmlChar *forceAuthn,
const xmlChar *isPassive,
const xmlChar *protocolProfile,
const xmlChar *assertionConsumerServiceID,
const xmlChar **authnContextClassRefs,
const xmlChar **authnContextStatementRefs,