diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-09 00:06:34 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-09 00:06:34 +0000 |
| commit | 5429b78b4a64a6a9449cf6b6ed25a7fe8e62967b (patch) | |
| tree | 444cc863df2183832243dabd8e7b7ea1c2d0c069 /python/lassomod.c | |
| parent | 628f94861cb2601988ea3495afed972a2b3830cf (diff) | |
| download | lasso-5429b78b4a64a6a9449cf6b6ed25a7fe8e62967b.tar.gz lasso-5429b78b4a64a6a9449cf6b6ed25a7fe8e62967b.tar.xz lasso-5429b78b4a64a6a9449cf6b6ed25a7fe8e62967b.zip | |
*** empty log message ***
Diffstat (limited to 'python/lassomod.c')
| -rw-r--r-- | python/lassomod.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/lassomod.c b/python/lassomod.c index 2d719914..4a033043 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -53,6 +53,8 @@ #include "protocols/elements/py_assertion.h" #include "protocols/elements/py_authentication_statement.h" +#include "environs/py_server.h" + static PyMethodDef lasso_methods[] = { /* py_lasso.h */ {"init", init, METH_VARARGS}, @@ -202,6 +204,11 @@ static PyMethodDef lasso_methods[] = { /* authentication_statement.h */ {"authentication_statement_new", authentication_statement_new, METH_VARARGS}, + /* environs */ + /* py_server.h */ + {"server_new", server_new, METH_VARARGS}, + {"server_add_provider", server_add_provider, METH_VARARGS}, + {NULL, NULL} /* End of Methods Sentinel */ }; |
