diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-04-07 17:54:25 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-04-07 17:54:25 +0000 |
| commit | b73d899efd03f3058b752e0f64061f1f7e308fc9 (patch) | |
| tree | c5c008fe7bff141d08a2b4314a9a9c9282c2cfdf /python | |
| parent | 1ead00b872ee377417e71d48e7bf2d91baf3adf5 (diff) | |
| download | lasso-b73d899efd03f3058b752e0f64061f1f7e308fc9.tar.gz lasso-b73d899efd03f3058b752e0f64061f1f7e308fc9.tar.xz lasso-b73d899efd03f3058b752e0f64061f1f7e308fc9.zip | |
*** empty log message ***
Diffstat (limited to 'python')
| -rw-r--r-- | python/lassomod.c | 2 | ||||
| -rw-r--r-- | python/protocols/py_single_sign_on_and_federation.c | 28 | ||||
| -rw-r--r-- | python/protocols/py_single_sign_on_and_federation.h | 2 |
3 files changed, 16 insertions, 16 deletions
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__ */ |
