summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2007-11-03 21:23:50 +0000
committerFrederic Peters <fpeters@entrouvert.com>2007-11-03 21:23:50 +0000
commitc6b02e65a8c39f89ebcbd344e2ec3258de78f83e (patch)
tree6b5d8c00df47010349397f401fa4206b32ede444
parent76794d2bd094298e214324944ff092cc20991c5d (diff)
downloadlasso-c6b02e65a8c39f89ebcbd344e2ec3258de78f83e.tar.gz
lasso-c6b02e65a8c39f89ebcbd344e2ec3258de78f83e.tar.xz
lasso-c6b02e65a8c39f89ebcbd344e2ec3258de78f83e.zip
annotate GList* of xmlNode*
-rw-r--r--lasso/xml/dst_data.h2
-rw-r--r--lasso/xml/dst_modify.h2
-rw-r--r--lasso/xml/dst_modify_response.h2
-rw-r--r--lasso/xml/dst_new_data.h2
-rw-r--r--lasso/xml/dst_query.h2
-rw-r--r--lasso/xml/dst_query_response.h2
-rw-r--r--lasso/xml/id-wsf-2.0/dstref_app_data.h2
-rw-r--r--lasso/xml/id-wsf-2.0/subsref_app_data.h2
-rw-r--r--lasso/xml/lib_authn_request.h2
-rw-r--r--lasso/xml/lib_authn_request_envelope.h2
-rw-r--r--lasso/xml/lib_authn_response.h2
-rw-r--r--lasso/xml/lib_authn_response_envelope.h2
-rw-r--r--lasso/xml/lib_federation_termination_notification.h2
-rw-r--r--lasso/xml/lib_logout_request.h2
-rw-r--r--lasso/xml/lib_name_identifier_mapping_request.h2
-rw-r--r--lasso/xml/lib_name_identifier_mapping_response.h2
-rw-r--r--lasso/xml/lib_register_name_identifier_request.h2
-rw-r--r--lasso/xml/lib_status_response.h2
-rw-r--r--lasso/xml/saml-2.0/saml2_encrypted_element.h2
19 files changed, 19 insertions, 19 deletions
diff --git a/lasso/xml/dst_data.h b/lasso/xml/dst_data.h
index 13a655bd..90f4869f 100644
--- a/lasso/xml/dst_data.h
+++ b/lasso/xml/dst_data.h
@@ -46,7 +46,7 @@ typedef struct _LassoDstDataClass LassoDstDataClass;
struct _LassoDstData {
LassoNode parent;
- GList *any; /* list of xmlNodes */
+ GList *any; /* list of xmlNode* */
char *id;
char *itemIDRef;
diff --git a/lasso/xml/dst_modify.h b/lasso/xml/dst_modify.h
index aef354b2..9a0f2054 100644
--- a/lasso/xml/dst_modify.h
+++ b/lasso/xml/dst_modify.h
@@ -54,7 +54,7 @@ struct _LassoDstModify {
LassoDiscoResourceID *ResourceID;
LassoDiscoEncryptedResourceID *EncryptedResourceID;
GList *Modification;
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
char *id;
char *itemID;
diff --git a/lasso/xml/dst_modify_response.h b/lasso/xml/dst_modify_response.h
index fe12396a..00f97270 100644
--- a/lasso/xml/dst_modify_response.h
+++ b/lasso/xml/dst_modify_response.h
@@ -51,7 +51,7 @@ struct _LassoDstModifyResponse {
LassoNode parent;
/*< public >*/
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
LassoUtilityStatus *Status;
char *id;
diff --git a/lasso/xml/dst_new_data.h b/lasso/xml/dst_new_data.h
index 48174b53..36e70938 100644
--- a/lasso/xml/dst_new_data.h
+++ b/lasso/xml/dst_new_data.h
@@ -48,7 +48,7 @@ typedef struct _LassoDstNewDataClass LassoDstNewDataClass;
struct _LassoDstNewData {
LassoNode parent;
- GList *any;
+ GList *any; /* of xmlNode* */
};
struct _LassoDstNewDataClass {
diff --git a/lasso/xml/dst_query.h b/lasso/xml/dst_query.h
index d2e9cd89..2e9626ea 100644
--- a/lasso/xml/dst_query.h
+++ b/lasso/xml/dst_query.h
@@ -54,7 +54,7 @@ struct _LassoDstQuery {
LassoDiscoResourceID *ResourceID;
LassoDiscoEncryptedResourceID *EncryptedResourceID;
GList *QueryItem;
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
char *id;
char *itemID;
diff --git a/lasso/xml/dst_query_response.h b/lasso/xml/dst_query_response.h
index 8f1946b0..e99117b3 100644
--- a/lasso/xml/dst_query_response.h
+++ b/lasso/xml/dst_query_response.h
@@ -54,7 +54,7 @@ struct _LassoDstQueryResponse {
/*< public >*/
LassoUtilityStatus *Status;
GList *Data;
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
char *id;
char *itemIDRef;
diff --git a/lasso/xml/id-wsf-2.0/dstref_app_data.h b/lasso/xml/id-wsf-2.0/dstref_app_data.h
index 5c664c26..cc63b307 100644
--- a/lasso/xml/id-wsf-2.0/dstref_app_data.h
+++ b/lasso/xml/id-wsf-2.0/dstref_app_data.h
@@ -61,7 +61,7 @@ struct _LassoIdWsf2DstRefAppData {
/*< public >*/
/* elements */
- GList *any; /* of xmlNode */
+ GList *any; /* of xmlNode* */
};
diff --git a/lasso/xml/id-wsf-2.0/subsref_app_data.h b/lasso/xml/id-wsf-2.0/subsref_app_data.h
index 3132e6a9..f80cf86d 100644
--- a/lasso/xml/id-wsf-2.0/subsref_app_data.h
+++ b/lasso/xml/id-wsf-2.0/subsref_app_data.h
@@ -61,7 +61,7 @@ struct _LassoIdWsf2SubsRefAppData {
/*< public >*/
/* elements */
- GList *any; /* of xmlNode */
+ GList *any; /* of xmlNode* */
GList *Subscription;
};
diff --git a/lasso/xml/lib_authn_request.h b/lasso/xml/lib_authn_request.h
index 0a47a9b3..b76034ad 100644
--- a/lasso/xml/lib_authn_request.h
+++ b/lasso/xml/lib_authn_request.h
@@ -53,7 +53,7 @@ struct _LassoLibAuthnRequest {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
/* <xs:element ref="ProviderID"/> */
char *ProviderID;
/* <xs:element ref="AffiliationID" minOccurs="0"/> */
diff --git a/lasso/xml/lib_authn_request_envelope.h b/lasso/xml/lib_authn_request_envelope.h
index 13835f80..3ce118fa 100644
--- a/lasso/xml/lib_authn_request_envelope.h
+++ b/lasso/xml/lib_authn_request_envelope.h
@@ -56,7 +56,7 @@ struct _LassoLibAuthnRequestEnvelope {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
/* <xs:element ref="AuthnRequest"/> */
LassoLibAuthnRequest *AuthnRequest;
/* <xs:element ref="ProviderID"/> */
diff --git a/lasso/xml/lib_authn_response.h b/lasso/xml/lib_authn_response.h
index ab093d07..81ffb537 100644
--- a/lasso/xml/lib_authn_response.h
+++ b/lasso/xml/lib_authn_response.h
@@ -54,7 +54,7 @@ struct _LassoLibAuthnResponse {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
/* <xs:element ref="ProviderID"/> */
char *ProviderID;
/* <xs:element ref="RelayState" minOccurs="0"/> */
diff --git a/lasso/xml/lib_authn_response_envelope.h b/lasso/xml/lib_authn_response_envelope.h
index 96964e9a..b2eed8ad 100644
--- a/lasso/xml/lib_authn_response_envelope.h
+++ b/lasso/xml/lib_authn_response_envelope.h
@@ -52,7 +52,7 @@ struct _LassoLibAuthnResponseEnvelope {
LassoNode parent;
/*< public >*/
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
LassoLibAuthnResponse *AuthnResponse;
char *AssertionConsumerServiceURL;
};
diff --git a/lasso/xml/lib_federation_termination_notification.h b/lasso/xml/lib_federation_termination_notification.h
index 192b215f..6b2bdc81 100644
--- a/lasso/xml/lib_federation_termination_notification.h
+++ b/lasso/xml/lib_federation_termination_notification.h
@@ -58,7 +58,7 @@ struct _LassoLibFederationTerminationNotification {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
/* <xs:element ref="ProviderID"/> */
char *ProviderID;
/* <xs:element ref="saml:NameIdentifier"/> */
diff --git a/lasso/xml/lib_logout_request.h b/lasso/xml/lib_logout_request.h
index 86c610d1..733691f0 100644
--- a/lasso/xml/lib_logout_request.h
+++ b/lasso/xml/lib_logout_request.h
@@ -54,7 +54,7 @@ struct _LassoLibLogoutRequest {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
char *ProviderID;
LassoSamlNameIdentifier *NameIdentifier;
char *SessionIndex;
diff --git a/lasso/xml/lib_name_identifier_mapping_request.h b/lasso/xml/lib_name_identifier_mapping_request.h
index 5d15c8a1..0e4c6061 100644
--- a/lasso/xml/lib_name_identifier_mapping_request.h
+++ b/lasso/xml/lib_name_identifier_mapping_request.h
@@ -57,7 +57,7 @@ struct _LassoLibNameIdentifierMappingRequest {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
/* <xs:element ref="ProviderID"/> */
char *ProviderID;
/* <xs:element ref="saml:NameIdentifier"/> */
diff --git a/lasso/xml/lib_name_identifier_mapping_response.h b/lasso/xml/lib_name_identifier_mapping_response.h
index 0564f721..9188c943 100644
--- a/lasso/xml/lib_name_identifier_mapping_response.h
+++ b/lasso/xml/lib_name_identifier_mapping_response.h
@@ -59,7 +59,7 @@ struct _LassoLibNameIdentifierMappingResponse {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
/* <xs:element ref="ProviderID"/> */
char *ProviderID;
/* <xs:element ref="samlp:Status"/> */
diff --git a/lasso/xml/lib_register_name_identifier_request.h b/lasso/xml/lib_register_name_identifier_request.h
index e28d6070..d7e1e5ae 100644
--- a/lasso/xml/lib_register_name_identifier_request.h
+++ b/lasso/xml/lib_register_name_identifier_request.h
@@ -57,7 +57,7 @@ struct _LassoLibRegisterNameIdentifierRequest {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
/* <xs:element ref="ProviderID"/> */
char *ProviderID;
/* <xs:element ref="IDPProvidedNameIdentifier"/> */
diff --git a/lasso/xml/lib_status_response.h b/lasso/xml/lib_status_response.h
index 2536ee61..3d15bc41 100644
--- a/lasso/xml/lib_status_response.h
+++ b/lasso/xml/lib_status_response.h
@@ -54,7 +54,7 @@ struct _LassoLibStatusResponse {
/*< public >*/
/* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/> */
- GList *Extension;
+ GList *Extension; /* of xmlNode* */
/* <xs:element ref="ProviderID"/> */
char *ProviderID;
/* <xs:element ref="samlp:Status"/> */
diff --git a/lasso/xml/saml-2.0/saml2_encrypted_element.h b/lasso/xml/saml-2.0/saml2_encrypted_element.h
index b43d5237..5a55b11a 100644
--- a/lasso/xml/saml-2.0/saml2_encrypted_element.h
+++ b/lasso/xml/saml-2.0/saml2_encrypted_element.h
@@ -56,7 +56,7 @@ struct _LassoSaml2EncryptedElement {
/*< public >*/
/* elements */
xmlNode *EncryptedData;
- GList *EncryptedKey;
+ GList *EncryptedKey; /* of xmlNode* */
LassoNode *original_data;
};