summaryrefslogtreecommitdiffstats
path: root/python/environs/py_session.h
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-30 12:02:28 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-30 12:02:28 +0000
commit407ce45c3b8ff3cbaafe3551423d09759ea699a6 (patch)
treef8762b82681037db9db5ca966bf089b51a2086ce /python/environs/py_session.h
parent04c32c9de2acb7bc10303b071fdd064ea0a355be (diff)
downloadlasso-407ce45c3b8ff3cbaafe3551423d09759ea699a6.tar.gz
lasso-407ce45c3b8ff3cbaafe3551423d09759ea699a6.tar.xz
lasso-407ce45c3b8ff3cbaafe3551423d09759ea699a6.zip
Update
Diffstat (limited to 'python/environs/py_session.h')
-rw-r--r--python/environs/py_session.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/python/environs/py_session.h b/python/environs/py_session.h
new file mode 100644
index 00000000..9e823fd6
--- /dev/null
+++ b/python/environs/py_session.h
@@ -0,0 +1,50 @@
+/* $Id$
+ *
+ * PyLasso -- Python bindings for Lasso library
+ *
+ * Copyright (C) 2004 Entr'ouvert
+ * http://lasso.entrouvert.org
+ *
+ * Authors: Nicolas Clapies <nclapies@entrouvert.com>
+ * Valery Febvre <vfebvre@easter-eggs.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __PYLASSO_PY_USER_H__
+#define __PYLASSO_PY_USER_H__
+
+#include <lasso/environs/session.h>
+
+typedef struct {
+ PyObject_HEAD
+ LassoSession *obj;
+} LassoSession_object;
+
+#define LassoSession_get(v) (((v) == Py_None) ? NULL : (((LassoSession_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
+PyObject *LassoSession_wrap(LassoSession *session);
+
+PyObject *session_new(PyObject *self, PyObject *args);
+PyObject *session_new_from_dump(PyObject *self, PyObject *args);
+
+PyObject *session_add_assertion(PyObject *self, PyObject *args);
+PyObject *session_destroy(PyObject *self, PyObject *args);
+PyObject *session_dump(PyObject *self, PyObject *args);
+PyObject *session_get_assertion(PyObject *self, PyObject *args);
+PyObject *session_get_authentication_method(PyObject *self, PyObject *args);
+PyObject *session_get_next_assertion_remote_providerID(PyObject *self, PyObject *args);
+PyObject *session_remove_assertion(PyObject *self, PyObject *args);
+
+#endif /* __PYLASSO_PY_SESSION_H__ */