diff options
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 */ }; |