aboutsummaryrefslogtreecommitdiff
path: root/src/set/set.h
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-08-12 18:00:43 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-08-12 18:00:43 +0000
commit566dfe32be22ed1f071b974be3c4dd8bc5721151 (patch)
treedc4e89e80aab53e1cb69604c2960eaaf5043bb17 /src/set/set.h
parentd734cfd6677de174aa51a07437b0e0cae4c870be (diff)
downloadgnunet-566dfe32be22ed1f071b974be3c4dd8bc5721151.tar.gz
gnunet-566dfe32be22ed1f071b974be3c4dd8bc5721151.zip
- correct iteraion in multihashmap
- iterate over elements with client ack in set
Diffstat (limited to 'src/set/set.h')
-rw-r--r--src/set/set.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/set/set.h b/src/set/set.h
index ec8390448..8527b6abb 100644
--- a/src/set/set.h
+++ b/src/set/set.h
@@ -227,6 +227,19 @@ struct GNUNET_SET_IterResponseMessage
227 /* rest: element */ 227 /* rest: element */
228}; 228};
229 229
230struct GNUNET_SET_IterAckMessage
231{
232 /**
233 * Type: GNUNET_MESSAGE_TYPE_SET_ITER_ACK
234 */
235 struct GNUNET_MessageHeader header;
236
237 /**
238 * Non-zero if the service should continue sending elements.
239 */
240 uint32_t send_more;
241};
242
230GNUNET_NETWORK_STRUCT_END 243GNUNET_NETWORK_STRUCT_END
231 244
232#endif 245#endif