From b73d899efd03f3058b752e0f64061f1f7e308fc9 Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Wed, 7 Apr 2004 17:54:25 +0000 Subject: *** empty log message *** --- python/lassomod.c | 2 +- .../protocols/py_single_sign_on_and_federation.c | 28 +++++++++++----------- .../protocols/py_single_sign_on_and_federation.h | 2 +- 3 files changed, 16 insertions(+), 16 deletions(-) (limited to 'python') diff --git a/python/lassomod.c b/python/lassomod.c index 1f5a2b8c..fc97e55e 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -42,7 +42,7 @@ static PyMethodDef lasso_methods[] = { /* py_single_sign_on_and_federation.h */ {"authn_request_getattr", authn_request_getattr, METH_VARARGS}, - {"authn_request_build", authn_request_build, METH_VARARGS}, + {"authn_request_create", authn_request_create, METH_VARARGS}, {NULL, NULL} /* End of Methods Sentinel */ }; diff --git a/python/protocols/py_single_sign_on_and_federation.c b/python/protocols/py_single_sign_on_and_federation.c index 04c90c80..a65b8d30 100644 --- a/python/protocols/py_single_sign_on_and_federation.c +++ b/python/protocols/py_single_sign_on_and_federation.c @@ -67,7 +67,7 @@ PyObject *authn_request_getattr(PyObject *self, PyObject *args) { /******************************************************************************/ -PyObject *authn_request_build(PyObject *self, PyObject *args) { +PyObject *authn_request_create(PyObject *self, PyObject *args) { PyObject *authnContextClassRefs_obj, *authnContextStatementRefs_obj; PyObject *idpList_obj; const xmlChar *providerID; @@ -94,19 +94,19 @@ PyObject *authn_request_build(PyObject *self, PyObject *args) { &idpList, &consent)) return NULL; - request = lasso_authn_request_build(providerID, - nameIDPolicy, - forceAuthn, - isPassive, - protocolProfile, - assertionConsumerServiceID, - NULL, - NULL, - authnContextComparison, - relayState, - proxyCount, - NULL, - consent); + request = lasso_authn_request_create(providerID, + nameIDPolicy, + forceAuthn, + isPassive, + protocolProfile, + assertionConsumerServiceID, + NULL, + NULL, + authnContextComparison, + relayState, + proxyCount, + NULL, + consent); return (lassoAuthnRequest_wrap(request)); } diff --git a/python/protocols/py_single_sign_on_and_federation.h b/python/protocols/py_single_sign_on_and_federation.h index bfd79d5f..ea331756 100644 --- a/python/protocols/py_single_sign_on_and_federation.h +++ b/python/protocols/py_single_sign_on_and_federation.h @@ -36,6 +36,6 @@ typedef struct { PyObject *lassoAuthnRequest_wrap(lassoAuthnRequest *request); PyObject *authn_request_getattr(PyObject *self, PyObject *args); -PyObject *authn_request_build(PyObject *self, PyObject *args); +PyObject *authn_request_create(PyObject *self, PyObject *args); #endif /* __PYLASSO_PY_SINGLE_SIGN_ON_AND_FEDERATION_H__ */ -- cgit