diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-09 16:20:35 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-09 16:20:35 +0000 |
| commit | 512ea607b475fdf0097ee3d7b68e78530ca5d657 (patch) | |
| tree | b2ed6ace56606d1e4500b05643dc40c26431037d /python | |
| parent | 9fa431a8e7e98db55a2bd764223c1cddb18a46d2 (diff) | |
| download | lasso-512ea607b475fdf0097ee3d7b68e78530ca5d657.tar.gz lasso-512ea607b475fdf0097ee3d7b68e78530ca5d657.tar.xz lasso-512ea607b475fdf0097ee3d7b68e78530ca5d657.zip | |
*** empty log message ***
Diffstat (limited to 'python')
| -rw-r--r-- | python/lassomod.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/lassomod.c b/python/lassomod.c index e966ad7b..feec7cec 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -54,8 +54,8 @@ #include "protocols/elements/py_authentication_statement.h" #include "environs/py_login.h" -#include "environs/py_server.h" #include "environs/py_logout.h" +#include "environs/py_server.h" #include "environs/py_user.h" static PyMethodDef lasso_methods[] = { @@ -211,10 +211,6 @@ static PyMethodDef lasso_methods[] = { {"login_new", login_new, METH_VARARGS}, {"login_new_from_dump", login_new_from_dump, METH_VARARGS}, - /* py_server.h */ - {"server_new", server_new, METH_VARARGS}, - {"server_add_provider", server_add_provider, METH_VARARGS}, - /* py_logout.h */ {"logout_new", logout_new, METH_VARARGS}, {"logout_build_request_msg", logout_build_request_msg, METH_VARARGS}, @@ -222,6 +218,10 @@ static PyMethodDef lasso_methods[] = { {"logout_init_request", logout_init_request, METH_VARARGS}, {"logout_handle_request", logout_handle_request, METH_VARARGS}, {"logout_handle_response", logout_handle_response, METH_VARARGS}, + + /* py_server.h */ + {"server_new", server_new, METH_VARARGS}, + {"server_add_provider", server_add_provider, METH_VARARGS}, /* py_user.h */ {"user_new", user_new, METH_VARARGS}, |
