diff options
author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-04-07 03:00:43 +0000 |
---|---|---|
committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-04-07 03:00:43 +0000 |
commit | c040ec62e11b5140e52ee0f59f9fc70a94b5ac5d (patch) | |
tree | d2031b4e39c16b80ed8090e9e169547d9ac85528 /python/lassomod.c | |
parent | beeae477e9c544e707d27101ce4e9c6c6cd80d70 (diff) | |
download | lasso-c040ec62e11b5140e52ee0f59f9fc70a94b5ac5d.tar.gz lasso-c040ec62e11b5140e52ee0f59f9fc70a94b5ac5d.tar.xz lasso-c040ec62e11b5140e52ee0f59f9fc70a94b5ac5d.zip |
*** empty log message ***
Diffstat (limited to 'python/lassomod.c')
-rw-r--r-- | python/lassomod.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/python/lassomod.c b/python/lassomod.c index 75ef2087..1f5a2b8c 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -25,6 +25,8 @@ #include "lassomod.h" #include "py_lasso.h" +#include "xml/py_xml.h" +#include "protocols/py_single_sign_on_and_federation.h" static PyMethodDef lasso_methods[] = { /* py_lasso.h */ @@ -34,6 +36,14 @@ static PyMethodDef lasso_methods[] = { {"check_version", check_version, METH_VARARGS}, {"check_version_ext", check_version_ext, METH_VARARGS}, + /* py_xml.h */ + {"node_dump", node_dump, METH_VARARGS}, + {"node_unref", node_unref, METH_VARARGS}, + + /* py_single_sign_on_and_federation.h */ + {"authn_request_getattr", authn_request_getattr, METH_VARARGS}, + {"authn_request_build", authn_request_build, METH_VARARGS}, + {NULL, NULL} /* End of Methods Sentinel */ }; |