~ubuntu-branches/ubuntu/hardy/lasso/hardy

« back to all changes in this revision

Viewing changes to lasso/id-ff/sessionprivate.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-07-31 21:35:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070731213526-oc6jw5mprcd5tjyy
Tags: 2.0.0-1ubuntu1
* Merge from debian unstable. Remaining changes:
  + debian/control:
    - Modify Maintainer value to match DebianMaintainerField spec.
* debian/rules:
  + Add CC=gcc-4.2 to the configure call else configure won't find jni.h
    from libgcj8-dev.
* configure{,.ac}:
  + Add missing quotes around the value for PHP[45]_LIBS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: sessionprivate.h,v 1.4 2005/11/20 15:38:19 fpeters Exp $ 
 
1
/* $Id: sessionprivate.h,v 1.5 2006/11/06 20:26:31 fpeters Exp $ 
2
2
 *
3
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
4
4
 *
36
36
gint lasso_session_add_assertion(LassoSession *session,
37
37
                char *providerID, LassoNode *assertion);
38
38
gint lasso_session_add_status(LassoSession *session,
39
 
                char *providerID, LassoSamlpStatus *authn_response);
 
39
                char *providerID, LassoNode *status);
40
40
 
41
41
LassoNode* lasso_session_get_assertion(
42
42
                LassoSession *session, gchar *providerID);
43
 
LassoSamlpStatus* lasso_session_get_status(
 
43
LassoNode* lasso_session_get_status(
44
44
                LassoSession *session, gchar *providerID);
45
45
 
46
46
gint lasso_session_remove_status(LassoSession *session, gchar *providerID);