diff options
author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-09 16:07:36 +0000 |
---|---|---|
committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-09 16:07:36 +0000 |
commit | 425c710ee7d7cfbbb496909b24ce038c2f6768b8 (patch) | |
tree | 237b350fad8d6b14679906e198a0080f1e13cb0f /python/lassomod.c | |
parent | 32b13e03dce0109b3445fda6b8d895a053353b6b (diff) | |
download | lasso-425c710ee7d7cfbbb496909b24ce038c2f6768b8.tar.gz lasso-425c710ee7d7cfbbb496909b24ce038c2f6768b8.tar.xz lasso-425c710ee7d7cfbbb496909b24ce038c2f6768b8.zip |
*** empty log message ***
Diffstat (limited to 'python/lassomod.c')
-rw-r--r-- | python/lassomod.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/python/lassomod.c b/python/lassomod.c index 4a033043..a5ec0c4b 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -53,7 +53,9 @@ #include "protocols/elements/py_assertion.h" #include "protocols/elements/py_authentication_statement.h" +#include "environs/py_login.h" #include "environs/py_server.h" +#include "environs/py_user.h" static PyMethodDef lasso_methods[] = { /* py_lasso.h */ @@ -141,7 +143,7 @@ static PyMethodDef lasso_methods[] = { {"authn_response_getattr", authn_response_getattr, METH_VARARGS}, {"authn_response_new_from_dump", authn_response_new_from_dump, METH_VARARGS}, {"authn_response_new_from_export", authn_response_new_from_export, METH_VARARGS}, - {"authn_response_new_from_request_query", authn_response_new_from_request_query, METH_VARARGS}, + //{"authn_response_new_from_request_query", authn_response_new_from_request_query, METH_VARARGS}, {"authn_response_must_authenticate", authn_response_must_authenticate, METH_VARARGS}, {"authn_response_process_authentication_result", authn_response_process_authentication_result, METH_VARARGS}, {"authn_response_verify_signature", authn_response_verify_signature, METH_VARARGS}, @@ -186,7 +188,6 @@ static PyMethodDef lasso_methods[] = { {"register_name_identifier_response_new_from_request_query", register_name_identifier_response_new_from_request_query, METH_VARARGS}, {"register_name_identifier_response_new_from_query", register_name_identifier_response_new_from_query, METH_VARARGS}, - /* py_request.h */ /* {"request_create", request_create, METH_VARARGS}, */ /* {"request_getattr", request_getattr, METH_VARARGS}, */ @@ -205,10 +206,18 @@ static PyMethodDef lasso_methods[] = { {"authentication_statement_new", authentication_statement_new, METH_VARARGS}, /* environs */ + /* py_login.h */ + {"login_new", login_new, METH_VARARGS}, + {"login_new_from_dump", login_new_from_dump, METH_VARARGS}, + /* py_server.h */ {"server_new", server_new, METH_VARARGS}, {"server_add_provider", server_add_provider, METH_VARARGS}, + /* py_user.h */ + {"user_new", user_new, METH_VARARGS}, + {"user_new_from_dump", user_new_from_dump, METH_VARARGS}, + {NULL, NULL} /* End of Methods Sentinel */ }; |