summaryrefslogtreecommitdiffstats
path: root/lasso/id-ff/sessionprivate.h
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2004-12-30 11:05:26 +0000
committerFrederic Peters <fpeters@entrouvert.com>2004-12-30 11:05:26 +0000
commit34693bbab4635c333b53583eb87ae981eab6797f (patch)
treec8fe6cd58b0a4ef9c86c886e4d799e06612345a3 /lasso/id-ff/sessionprivate.h
parent319bb54a13cfbf98e6e8f3abd89de2404a269f5b (diff)
downloadlasso-34693bbab4635c333b53583eb87ae981eab6797f.tar.gz
lasso-34693bbab4635c333b53583eb87ae981eab6797f.tar.xz
lasso-34693bbab4635c333b53583eb87ae981eab6797f.zip
Moved #LassoSession private functions (limited to Lasso internal use) to a new
sessionprivate.h file.
Diffstat (limited to 'lasso/id-ff/sessionprivate.h')
-rw-r--r--lasso/id-ff/sessionprivate.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/lasso/id-ff/sessionprivate.h b/lasso/id-ff/sessionprivate.h
new file mode 100644
index 00000000..93e92008
--- /dev/null
+++ b/lasso/id-ff/sessionprivate.h
@@ -0,0 +1,54 @@
+/* $Id$
+ *
+ * Lasso - A free implementation of the Liberty Alliance specifications.
+ *
+ * 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 __LASSO_SESSION_PRIVATE_H__
+#define __LASSO_SESSION_PRIVATE_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#include <lasso/xml/lib_assertion.h>
+#include <lasso/xml/samlp_status.h>
+#include <lasso/id-ff/session.h>
+
+gint lasso_session_add_assertion(LassoSession *session,
+ char *providerID, LassoSamlAssertion *assertion);
+gint lasso_session_add_status(LassoSession *session,
+ char *providerID, LassoSamlpStatus *authn_response);
+
+LassoSamlAssertion* lasso_session_get_assertion(
+ LassoSession *session, gchar *providerID);
+LassoSamlpStatus* lasso_session_get_status(
+ LassoSession *session, gchar *providerID);
+
+gint lasso_session_remove_status(LassoSession *session, gchar *providerID);
+gint lasso_session_remove_assertion(LassoSession *session, gchar *providerID);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __LASSO_SESSION_PRIVATE_H__ */