summaryrefslogtreecommitdiffstats
path: root/python/lassomod.c
diff options
context:
space:
mode:
Diffstat (limited to 'python/lassomod.c')
-rw-r--r--python/lassomod.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/lassomod.c b/python/lassomod.c
index 8fce8193..bad6649f 100644
--- a/python/lassomod.c
+++ b/python/lassomod.c
@@ -27,6 +27,7 @@
#include "py_lasso.h"
#include "xml/py_xml.h"
#include "protocols/py_single_sign_on_and_federation.h"
+#include "protocols/py_logout.h"
static PyMethodDef lasso_methods[] = {
/* py_lasso.h */
@@ -52,6 +53,10 @@ static PyMethodDef lasso_methods[] = {
{"assertion_add_authenticationStatement", assertion_add_authenticationStatement, METH_VARARGS},
{"authentication_statement_build", authentication_statement_build, METH_VARARGS},
+ /* py_logout.h */
+ {"logout_request_getattr", logout_request_getattr, METH_VARARGS},
+ {"logout_request_create", logout_request_create, METH_VARARGS},
+
{NULL, NULL} /* End of Methods Sentinel */
};