From 1579f751683d724c8f9aa6b986338f99a8948746 Mon Sep 17 00:00:00 2001 From: Nicolas Clapies Date: Fri, 9 Apr 2004 19:54:11 +0000 Subject: add logout stuffs bindings --- python/lassomod.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'python/lassomod.c') 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 */ }; -- cgit