aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-11-30 17:26:45 +0000
committerChristian Grothoff <christian@grothoff.org>2013-11-30 17:26:45 +0000
commit2e6e4ee945072c30c24289da5d01aed1b282dfcd (patch)
tree2c8bfc2183657fc03dfc08a3d67b11e3a8eeda56 /src/fs/gnunet-service-fs.h
parent7398e127e6b600054c20deafb3fae075adeafd8f (diff)
downloadgnunet-2e6e4ee945072c30c24289da5d01aed1b282dfcd.tar.gz
gnunet-2e6e4ee945072c30c24289da5d01aed1b282dfcd.zip
fixing #3146: peer identities no longer have the size of hash codes; breaks FS protocol compatibility with previous versions slightly...
Diffstat (limited to 'src/fs/gnunet-service-fs.h')
-rw-r--r--src/fs/gnunet-service-fs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/gnunet-service-fs.h b/src/fs/gnunet-service-fs.h
index 8830058e9..c5fb47ef3 100644
--- a/src/fs/gnunet-service-fs.h
+++ b/src/fs/gnunet-service-fs.h
@@ -83,7 +83,7 @@ struct GetMessage
83{ 83{
84 84
85 /** 85 /**
86 * Message type will be GNUNET_MESSAGE_TYPE_FS_GET. 86 * Message type will be #GNUNET_MESSAGE_TYPE_FS_GET.
87 */ 87 */
88 struct GNUNET_MessageHeader header; 88 struct GNUNET_MessageHeader header;
89 89
@@ -114,7 +114,7 @@ struct GetMessage
114 /** 114 /**
115 * Which of the optional hash codes are present at the end of the 115 * Which of the optional hash codes are present at the end of the
116 * message? See GET_MESSAGE_BIT_xx constants. For each bit that is 116 * message? See GET_MESSAGE_BIT_xx constants. For each bit that is
117 * set, an additional struct GNUNET_HashCode with the respective content 117 * set, an additional `struct GNUNET_HashCode` with the respective content
118 * (in order of the bits) will be appended to the end of the GET 118 * (in order of the bits) will be appended to the end of the GET
119 * message. 119 * message.
120 */ 120 */
@@ -126,7 +126,7 @@ struct GetMessage
126 */ 126 */
127 struct GNUNET_HashCode query; 127 struct GNUNET_HashCode query;
128 128
129 /* this is followed by hash codes as specified in the "hash_bitmap"; 129 /* this is followed by PeerIdentities as specified in the "hash_bitmap";
130 * after that, an optional bloomfilter (with bits set for replies 130 * after that, an optional bloomfilter (with bits set for replies
131 * that should be suppressed) can be present */ 131 * that should be suppressed) can be present */
132}; 132};