summaryrefslogtreecommitdiffstats
path: root/python/protocols
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-04-07 17:54:25 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-04-07 17:54:25 +0000
commitb73d899efd03f3058b752e0f64061f1f7e308fc9 (patch)
treec5c008fe7bff141d08a2b4314a9a9c9282c2cfdf /python/protocols
parent1ead00b872ee377417e71d48e7bf2d91baf3adf5 (diff)
downloadlasso-b73d899efd03f3058b752e0f64061f1f7e308fc9.tar.gz
lasso-b73d899efd03f3058b752e0f64061f1f7e308fc9.tar.xz
lasso-b73d899efd03f3058b752e0f64061f1f7e308fc9.zip
*** empty log message ***
Diffstat (limited to 'python/protocols')
-rw-r--r--python/protocols/py_single_sign_on_and_federation.c28
-rw-r--r--python/protocols/py_single_sign_on_and_federation.h2
2 files changed, 15 insertions, 15 deletions
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__ */