aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Fix <bernd.fix@pep.foundation>2019-05-30 21:42:59 +0200
committerBernd Fix <bernd.fix@pep.foundation>2019-05-30 21:44:54 +0200
commit09d0b535d3b5dc8798b18a4791d45b4a9c8ab529 (patch)
treeee64e11b7bb3a6df5197c7cdb3f07a840a63560c
parent4b2496fc954b18b89d9cebc160b375f1bcf40864 (diff)
downloadgnunet-09d0b535d3b5dc8798b18a4791d45b4a9c8ab529.tar.gz
gnunet-09d0b535d3b5dc8798b18a4791d45b4a9c8ab529.zip
Change and improved comments.
-rw-r--r--src/gns/gns.h15
-rw-r--r--src/revocation/revocation.h5
2 files changed, 3 insertions, 17 deletions
diff --git a/src/gns/gns.h b/src/gns/gns.h
index 2b35fa814..3b41de83c 100644
--- a/src/gns/gns.h
+++ b/src/gns/gns.h
@@ -27,21 +27,6 @@
27 27
28#include "gnunet_gns_service.h" 28#include "gnunet_gns_service.h"
29 29
30/**
31 * Name of the GNS TLD.
32 */
33#define GNUNET_GNS_TLD "gnu"
34
35/**
36 * Name of the zone key TLD.
37 */
38#define GNUNET_GNS_TLD_ZKEY "zkey"
39
40/**
41 * TLD name used to indicate relative names.
42 */
43#define GNUNET_GNS_TLD_PLUS "+"
44
45 30
46GNUNET_NETWORK_STRUCT_BEGIN 31GNUNET_NETWORK_STRUCT_BEGIN
47 32
diff --git a/src/revocation/revocation.h b/src/revocation/revocation.h
index f17a7fae5..38fb476ed 100644
--- a/src/revocation/revocation.h
+++ b/src/revocation/revocation.h
@@ -102,7 +102,7 @@ struct RevokeMessage
102 102
103 /** 103 /**
104 * Must have purpose #GNUNET_SIGNATURE_PURPOSE_REVOCATION, 104 * Must have purpose #GNUNET_SIGNATURE_PURPOSE_REVOCATION,
105 * size expands over the public key. 105 * size expands over the public key. (@deprecated)
106 */ 106 */
107 struct GNUNET_CRYPTO_EccSignaturePurpose purpose; 107 struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
108 108
@@ -125,7 +125,8 @@ struct RevocationResponseMessage
125 struct GNUNET_MessageHeader header; 125 struct GNUNET_MessageHeader header;
126 126
127 /** 127 /**
128 * #GNUNET_NO if revoked, #GNUNET_YES if valid. 128 * #GNUNET_NO if revocation failed for internal reasons (e.g. disk full)
129 * #GNUNET_YES on success
129 */ 130 */
130 uint32_t is_valid GNUNET_PACKED; 131 uint32_t is_valid GNUNET_PACKED;
131 132