summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:08:20 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-08-01 14:08:20 +0000
commit0d5011c65ddb8277add9cdb93595da76fd735a7b (patch)
tree4f8c8bf7bcb27c27be9e8d719d8ae405e135b9bd
parented41e73e77bc76467cf7b1d70b1825fcba86b73a (diff)
- lasso/id-wsf/wsf_profile.c lasso/id-wsf/wsf_profile_private.h:
extract LassoWsfProfilePrivate structure.
-rw-r--r--lasso/id-wsf/wsf_profile.c9
-rw-r--r--lasso/id-wsf/wsf_profile_private.h9
2 files changed, 9 insertions, 9 deletions
diff --git a/lasso/id-wsf/wsf_profile.c b/lasso/id-wsf/wsf_profile.c
index 5bb77cec..00318414 100644
--- a/lasso/id-wsf/wsf_profile.c
+++ b/lasso/id-wsf/wsf_profile.c
@@ -52,15 +52,6 @@
#include <lasso/id-ff/server.h>
#include <lasso/id-ff/providerprivate.h>
-struct _LassoWsfProfilePrivate
-{
- gboolean dispose_has_run;
- LassoDiscoDescription *description;
- LassoSoapFault *fault;
- gchar *public_key;
- GList *credentials;
-};
-
static gint lasso_wsf_profile_verify_x509_authentication(LassoWsfProfile *profile,
xmlDoc *doc, xmlSecKey *public_key);
static gboolean lasso_wsf_profile_has_saml_authentication(LassoWsfProfile *profile);
diff --git a/lasso/id-wsf/wsf_profile_private.h b/lasso/id-wsf/wsf_profile_private.h
index f55b7dd0..9d606bee 100644
--- a/lasso/id-wsf/wsf_profile_private.h
+++ b/lasso/id-wsf/wsf_profile_private.h
@@ -32,6 +32,15 @@ extern "C" {
#include <lasso/xml/soap_fault.h>
+struct _LassoWsfProfilePrivate
+{
+ gboolean dispose_has_run;
+ LassoDiscoDescription *description;
+ LassoSoapFault *fault;
+ gchar *public_key;
+ GList *credentials;
+};
+
void lasso_wsf_profile_set_description(LassoWsfProfile *profile,
LassoDiscoDescription *description);
void lasso_wsf_profile_set_security_mech_id(LassoWsfProfile *profile,