From 11d9dc4e60e7d1ebf5468c95c4446ca7fff9eb5f Mon Sep 17 00:00:00 2001 From: Nicolas Clapies Date: Tue, 20 Apr 2004 11:50:36 +0000 Subject: add RegisterNameIdentifierRequest class --- 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 dee23736..688efa0b 100644 --- a/python/lassomod.c +++ b/python/lassomod.c @@ -28,6 +28,7 @@ #include "xml/py_xml.h" #include "protocols/py_logout.h" #include "protocols/py_single_sign_on_and_federation.h" +#include "protocols/py_register_name_identifier.h" static PyMethodDef lasso_methods[] = { /* py_lasso.h */ @@ -74,6 +75,10 @@ static PyMethodDef lasso_methods[] = { {"response_init", response_init, METH_VARARGS}, {"response_add_assertion", response_add_assertion, METH_VARARGS}, + /* py_register_name_identifier.h */ + {"register_name_identifier_request_getattr", register_name_identifier_request_getattr, METH_VARARGS}, + {"register_name_identifier_request_create", register_name_identifier_request_create, METH_VARARGS}, + {NULL, NULL} /* End of Methods Sentinel */ }; -- cgit