summaryrefslogtreecommitdiff
path: root/src/credential/credential.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/credential/credential.h')
-rw-r--r--src/credential/credential.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/src/credential/credential.h b/src/credential/credential.h
index fcc81de6c..3d76bbf4f 100644
--- a/src/credential/credential.h
+++ b/src/credential/credential.h
@@ -32,7 +32,8 @@ GNUNET_NETWORK_STRUCT_BEGIN
32/** 32/**
33 * Message from client to Credential service to collect credentials. 33 * Message from client to Credential service to collect credentials.
34 */ 34 */
35struct CollectMessage { 35struct CollectMessage
36{
36 /** 37 /**
37 * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY 38 * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY
38 */ 39 */
@@ -65,7 +66,8 @@ struct CollectMessage {
65/** 66/**
66 * Message from client to Credential service to verify attributes. 67 * Message from client to Credential service to verify attributes.
67 */ 68 */
68struct VerifyMessage { 69struct VerifyMessage
70{
69 /** 71 /**
70 * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY 72 * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY
71 */ 73 */
@@ -103,7 +105,8 @@ struct VerifyMessage {
103/** 105/**
104 * Message from CREDENTIAL service to client: new results. 106 * Message from CREDENTIAL service to client: new results.
105 */ 107 */
106struct DelegationChainResultMessage { 108struct DelegationChainResultMessage
109{
107 /** 110 /**
108 * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY_RESULT 111 * Header of type #GNUNET_MESSAGE_TYPE_CREDENTIAL_VERIFY_RESULT
109 */ 112 */
@@ -132,7 +135,8 @@ struct DelegationChainResultMessage {
132 /* followed by ad_count GNUNET_CREDENTIAL_RecordData structs*/ 135 /* followed by ad_count GNUNET_CREDENTIAL_RecordData structs*/
133}; 136};
134 137
135struct DelegationRecordData { 138struct DelegationRecordData
139{
136 /** 140 /**
137 * Subject key 141 * Subject key
138 */ 142 */
@@ -145,7 +149,8 @@ struct DelegationRecordData {
145}; 149};
146 150
147 151
148struct ChainEntry { 152struct ChainEntry
153{
149 /** 154 /**
150 * Issuer key 155 * Issuer key
151 */ 156 */
@@ -168,7 +173,8 @@ struct ChainEntry {
168}; 173};
169 174
170 175
171struct CredentialEntry { 176struct CredentialEntry
177{
172 /** 178 /**
173 * The signature for this credential by the issuer 179 * The signature for this credential by the issuer
174 */ 180 */
@@ -208,4 +214,3 @@ struct CredentialEntry {
208GNUNET_NETWORK_STRUCT_END 214GNUNET_NETWORK_STRUCT_END
209 215
210#endif 216#endif
211