aboutsummaryrefslogtreecommitdiff
path: root/src/dht/dht.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/dht.h')
-rw-r--r--src/dht/dht.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/dht/dht.h b/src/dht/dht.h
index 8adf49f5c..772471a7c 100644
--- a/src/dht/dht.h
+++ b/src/dht/dht.h
@@ -60,7 +60,7 @@ struct GNUNET_DHT_ClientGetStopMessage
60 /** 60 /**
61 * Key of this request 61 * Key of this request
62 */ 62 */
63 GNUNET_HashCode key; 63 struct GNUNET_HashCode key;
64 64
65}; 65};
66 66
@@ -95,7 +95,7 @@ struct GNUNET_DHT_ClientGetMessage
95 /** 95 /**
96 * The key to search for 96 * The key to search for
97 */ 97 */
98 GNUNET_HashCode key; 98 struct GNUNET_HashCode key;
99 99
100 /** 100 /**
101 * Unique ID identifying this request, if 0 then 101 * Unique ID identifying this request, if 0 then
@@ -148,7 +148,7 @@ struct GNUNET_DHT_ClientResultMessage
148 /** 148 /**
149 * The key that was searched for 149 * The key that was searched for
150 */ 150 */
151 GNUNET_HashCode key; 151 struct GNUNET_HashCode key;
152 152
153 /* put path, get path and actual data are copied to end of this dealy do */ 153 /* put path, get path and actual data are copied to end of this dealy do */
154 154
@@ -193,7 +193,7 @@ struct GNUNET_DHT_ClientPutMessage
193 /** 193 /**
194 * The key to store the value under. 194 * The key to store the value under.
195 */ 195 */
196 GNUNET_HashCode key; 196 struct GNUNET_HashCode key;
197 197
198 /* DATA copied to end of this message */ 198 /* DATA copied to end of this message */
199 199
@@ -268,7 +268,7 @@ struct GNUNET_DHT_MonitorPutMessage
268 /** 268 /**
269 * The key to store the value under. 269 * The key to store the value under.
270 */ 270 */
271 GNUNET_HashCode key; 271 struct GNUNET_HashCode key;
272 272
273 /* put path (if tracked) */ 273 /* put path (if tracked) */
274 274
@@ -315,7 +315,7 @@ struct GNUNET_DHT_MonitorStartStopMessage
315 /** 315 /**
316 * The key to filter messages by. 316 * The key to filter messages by.
317 */ 317 */
318 GNUNET_HashCode key; 318 struct GNUNET_HashCode key;
319}; 319};
320 320
321 321
@@ -358,7 +358,7 @@ struct GNUNET_DHT_MonitorGetMessage
358 /** 358 /**
359 * The key to store the value under. 359 * The key to store the value under.
360 */ 360 */
361 GNUNET_HashCode key; 361 struct GNUNET_HashCode key;
362 362
363 /* get path (if tracked) */ 363 /* get path (if tracked) */
364 364
@@ -397,7 +397,7 @@ struct GNUNET_DHT_MonitorGetRespMessage
397 /** 397 /**
398 * The key of the corresponding GET request. 398 * The key of the corresponding GET request.
399 */ 399 */
400 GNUNET_HashCode key; 400 struct GNUNET_HashCode key;
401 401
402 /* put path (if tracked) */ 402 /* put path (if tracked) */
403 403