summaryrefslogtreecommitdiffstats
path: root/python/lassomod.c
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-04-13 13:39:25 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-04-13 13:39:25 +0000
commit80cf886ca2d846f187d8d3772d6f5fd17e250e9b (patch)
tree4f53fed6ea3b1e283102a645835f417c38f65715 /python/lassomod.c
parentce7c0c4b50c0c658990185c0cbb23c5565e55a3c (diff)
downloadlasso-80cf886ca2d846f187d8d3772d6f5fd17e250e9b.tar.gz
lasso-80cf886ca2d846f187d8d3772d6f5fd17e250e9b.tar.xz
lasso-80cf886ca2d846f187d8d3772d6f5fd17e250e9b.zip
*** empty log message ***
Diffstat (limited to 'python/lassomod.c')
-rw-r--r--python/lassomod.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/python/lassomod.c b/python/lassomod.c
index 407d3778..b0aee50c 100644
--- a/python/lassomod.c
+++ b/python/lassomod.c
@@ -26,8 +26,8 @@
#include "py_lasso.h"
#include "xml/py_xml.h"
-#include "protocols/py_single_sign_on_and_federation.h"
#include "protocols/py_logout.h"
+#include "protocols/py_single_sign_on_and_federation.h"
static PyMethodDef lasso_methods[] = {
/* py_lasso.h */
@@ -37,6 +37,7 @@ static PyMethodDef lasso_methods[] = {
{"check_version", check_version, METH_VARARGS},
{"check_version_ext", check_version_ext, METH_VARARGS},
+ /* xml */
/* py_xml.h */
{"node_dump", node_dump, METH_VARARGS},
{"node_get_attr_value", node_get_attr_value, METH_VARARGS},
@@ -45,6 +46,11 @@ static PyMethodDef lasso_methods[] = {
{"node_url_encode", node_url_encode, METH_VARARGS},
{"node_verify_signature", node_verify_signature, METH_VARARGS},
+ /* protocols */
+ /* py_logout.h */
+ {"logout_request_getattr", logout_request_getattr, METH_VARARGS},
+ {"logout_request_create", logout_request_create, METH_VARARGS},
+
/* py_single_sign_on_and_federation.h */
{"authn_request_getattr", authn_request_getattr, METH_VARARGS},
{"authn_request_create", authn_request_create, METH_VARARGS},
@@ -55,10 +61,6 @@ static PyMethodDef lasso_methods[] = {
{"assertion_build", assertion_build, METH_VARARGS},
{"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 */
};