aboutsummaryrefslogtreecommitdiff
path: root/src/set/set.h
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-07-10 01:31:13 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-07-10 01:31:13 +0000
commit6b8400966a5e6c2194785b3a33f91b748cfa7b7b (patch)
tree0dafa7ba24c7a6dbb852fdedfd1822cd1e4835c0 /src/set/set.h
parent084cb3e09007ef50a3d9bd29514c8ec455249633 (diff)
downloadgnunet-6b8400966a5e6c2194785b3a33f91b748cfa7b7b.tar.gz
gnunet-6b8400966a5e6c2194785b3a33f91b748cfa7b7b.zip
- set service working
- set profiler
Diffstat (limited to 'src/set/set.h')
-rw-r--r--src/set/set.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/set/set.h b/src/set/set.h
index 7ec3e6cb2..fc29e6696 100644
--- a/src/set/set.h
+++ b/src/set/set.h
@@ -194,6 +194,24 @@ struct GNUNET_SET_ElementMessage
194}; 194};
195 195
196 196
197/**
198 * Sent to the service by the client
199 * in order to cancel a set operation.
200 */
201struct GNUNET_SET_CancelMessage
202{
203 /**
204 * Type: GNUNET_MESSAGE_TYPE_SET_CANCEL
205 */
206 struct GNUNET_MessageHeader header;
207
208 /**
209 * ID of the request we want to cancel.
210 */
211 uint32_t request_id GNUNET_PACKED;
212};
213
214
197GNUNET_NETWORK_STRUCT_END 215GNUNET_NETWORK_STRUCT_END
198 216
199#endif 217#endif