aboutsummaryrefslogtreecommitdiff
path: root/src/set/set.h
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-07-23 17:26:35 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-07-23 17:26:35 +0000
commit18bc05a535be767b07473e29ac85cebe79ce83cf (patch)
treee17580c67403eb892e4e0e868035b16356eed0ab /src/set/set.h
parent2584d09e42fcd0f8199b905ca5a43809bbc42aaa (diff)
downloadgnunet-18bc05a535be767b07473e29ac85cebe79ce83cf.tar.gz
gnunet-18bc05a535be767b07473e29ac85cebe79ce83cf.zip
- set iteration
Diffstat (limited to 'src/set/set.h')
-rw-r--r--src/set/set.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/set/set.h b/src/set/set.h
index fc29e6696..9f6eb3642 100644
--- a/src/set/set.h
+++ b/src/set/set.h
@@ -211,6 +211,21 @@ struct GNUNET_SET_CancelMessage
211 uint32_t request_id GNUNET_PACKED; 211 uint32_t request_id GNUNET_PACKED;
212}; 212};
213 213
214struct GNUNET_SET_IterResponseMessage
215{
216 /**
217 * Type: GNUNET_MESSAGE_TYPE_SET_ITER_RESPONSE
218 */
219 struct GNUNET_MessageHeader header;
220
221 /**
222 * Type of the element attachted to the message,
223 * if any.
224 */
225 uint16_t element_type GNUNET_PACKED;
226
227 /* rest: element */
228};
214 229
215GNUNET_NETWORK_STRUCT_END 230GNUNET_NETWORK_STRUCT_END
216 231