~ubuntu-branches/ubuntu/intrepid/lasso/intrepid-security

« back to all changes in this revision

Viewing changes to lasso/xml/xml.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: xml.h,v 1.67 2005/09/11 09:08:31 fpeters Exp $ 
 
1
/* $Id: xml.h,v 1.72 2006/11/16 14:34:57 dlaniel Exp $ 
2
2
 *
3
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
4
4
 *
38
38
#include <libxml/uri.h>
39
39
#include <libxml/tree.h>
40
40
 
 
41
#include <xmlsec/xmlenc.h>
 
42
 
41
43
#include <lasso/export.h>
42
44
#include <lasso/errors.h>
43
45
#include <lasso/xml/strings.h>
137
139
 
138
140
LASSO_EXPORT char* lasso_node_export_to_soap(LassoNode *node);
139
141
 
 
142
LASSO_EXPORT char* lasso_node_export_to_paos_request(LassoNode *node, const char *issuer,
 
143
                                const char *responseConsumerURL, const char *relay_state);
 
144
 
 
145
LASSO_EXPORT char* lasso_node_export_to_ecp_soap_response(LassoNode *node,
 
146
                                const char *assertionConsumerURL);
 
147
 
140
148
LASSO_EXPORT xmlNode* lasso_node_get_xmlNode(LassoNode *node, gboolean lasso_dump);
141
149
 
142
150
LASSO_EXPORT LassoMessageFormat lasso_node_init_from_message(LassoNode *node, const char *message);