aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index 059b8920d..3aa9fcc1b 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -55,12 +55,12 @@ struct ContentHashKey
55 /** 55 /**
56 * Hash of the original content, used for encryption. 56 * Hash of the original content, used for encryption.
57 */ 57 */
58 GNUNET_HashCode key; 58 struct GNUNET_HashCode key;
59 59
60 /** 60 /**
61 * Hash of the encrypted content, used for querying. 61 * Hash of the encrypted content, used for querying.
62 */ 62 */
63 GNUNET_HashCode query; 63 struct GNUNET_HashCode query;
64}; 64};
65 65
66 66
@@ -112,7 +112,7 @@ struct IndexStartMessage
112 /** 112 /**
113 * Hash of the file that we would like to index. 113 * Hash of the file that we would like to index.
114 */ 114 */
115 GNUNET_HashCode file_id; 115 struct GNUNET_HashCode file_id;
116 116
117 /* this is followed by a 0-terminated 117 /* this is followed by a 0-terminated
118 * filename of a file with the hash 118 * filename of a file with the hash
@@ -141,7 +141,7 @@ struct IndexInfoMessage
141 /** 141 /**
142 * Hash of the indexed file. 142 * Hash of the indexed file.
143 */ 143 */
144 GNUNET_HashCode file_id; 144 struct GNUNET_HashCode file_id;
145 145
146 /* this is followed by a 0-terminated 146 /* this is followed by a 0-terminated
147 * filename of a file with the hash 147 * filename of a file with the hash
@@ -174,7 +174,7 @@ struct UnindexMessage
174 /** 174 /**
175 * Hash of the file that we will unindex. 175 * Hash of the file that we will unindex.
176 */ 176 */
177 GNUNET_HashCode file_id; 177 struct GNUNET_HashCode file_id;
178 178
179}; 179};
180 180
@@ -245,7 +245,7 @@ struct SearchMessage
245 * <p> 245 * <p>
246 * If the request is for a KBLOCK, "target" must be all zeros. 246 * If the request is for a KBLOCK, "target" must be all zeros.
247 */ 247 */
248 GNUNET_HashCode target; 248 struct GNUNET_HashCode target;
249 249
250 /** 250 /**
251 * Hash of the keyword (aka query) for KBLOCKs; Hash of 251 * Hash of the keyword (aka query) for KBLOCKs; Hash of
@@ -253,7 +253,7 @@ struct SearchMessage
253 * and hash of the identifier XORed with the target for 253 * and hash of the identifier XORed with the target for
254 * SBLOCKS (aka query). 254 * SBLOCKS (aka query).
255 */ 255 */
256 GNUNET_HashCode query; 256 struct GNUNET_HashCode query;
257 257
258 /* this is followed by the hash codes of already-known 258 /* this is followed by the hash codes of already-known
259 * results (which should hence be excluded from what 259 * results (which should hence be excluded from what