aboutsummaryrefslogtreecommitdiff
path: root/src/credential/credential.h
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2016-12-06 22:21:49 +0100
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2016-12-06 22:21:49 +0100
commit1be263982990fc0650c30fb5f758d4100540561d (patch)
treeca7823ac9906822cc88e6a3e0c40b215796e0b95 /src/credential/credential.h
parent14045cba92ab8167e1371f2e2447a5bcdd71f12a (diff)
downloadgnunet-1be263982990fc0650c30fb5f758d4100540561d.tar.gz
gnunet-1be263982990fc0650c30fb5f758d4100540561d.zip
- add simple verification
Diffstat (limited to 'src/credential/credential.h')
-rw-r--r--src/credential/credential.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/credential/credential.h b/src/credential/credential.h
index 8b5cf6db9..d52776cfa 100644
--- a/src/credential/credential.h
+++ b/src/credential/credential.h
@@ -83,12 +83,16 @@ struct VerifyResultMessage
83 * Unique identifier for this request (for key collisions). 83 * Unique identifier for this request (for key collisions).
84 */ 84 */
85 uint32_t id GNUNET_PACKED; 85 uint32_t id GNUNET_PACKED;
86 86
87 /**
88 * Indicates if credential has been found at all
89 */
90 uint32_t cred_found GNUNET_PACKED;
87 91
88 /** 92 /**
89 * The number of credentials in the response 93 * The number of credentials in the response
90 */ 94 */
91 uint32_t ad_count GNUNET_PACKED; 95 uint32_t cd_count GNUNET_PACKED;
92 96
93 /* followed by ad_count GNUNET_CREDENTIAL_RecordData structs*/ 97 /* followed by ad_count GNUNET_CREDENTIAL_RecordData structs*/
94 98