From 1c0563e59ff5a8a8543901d56d411719472bab92 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 24 Jul 2013 11:39:30 +0000 Subject: [PATCH] - msg type added --- src/include/gnunet_protocols.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h index 0c227e407..c559c593a 100644 --- a/src/include/gnunet_protocols.h +++ b/src/include/gnunet_protocols.h @@ -1755,6 +1755,21 @@ extern "C" */ #define GNUNET_MESSAGE_TYPE_SET_P2P_DONE 586 +/** + * Start iteration over set elements. + */ +#define GNUNET_MESSAGE_TYPE_SET_ITER_REQUEST 587 + +/** + * Element result for the iterating client. + */ +#define GNUNET_MESSAGE_TYPE_SET_ITER_ELEMENT 588 + +/** + * Iteration end marker for the client. + */ +#define GNUNET_MESSAGE_TYPE_SET_ITER_DONE 589 + /******************************************************************************* -- 2.25.1