commit 2faa745b7bd47afc33d2619896a8928d1b70c6ed
parent 991f51dc78d1690bdf169bca8028a3d0c5fbb177
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 30 Nov 2014 00:45:18 +0000
-remove dead state
Diffstat:
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/src/include/gnunet_set_service.h b/src/include/gnunet_set_service.h
@@ -96,24 +96,22 @@ enum GNUNET_SET_OperationType
enum GNUNET_SET_Status
{
/**
- * Everything went ok.
+ * Everything went ok, we are transmitting an element of the
+ * result (in set, or to be removed from set, depending on
+ * the `enum GNUNET_SET_ResultMode`).
*/
GNUNET_SET_STATUS_OK,
/**
- * There was a timeout.
- */
- GNUNET_SET_STATUS_TIMEOUT,
-
- /**
* The other peer refused to to the operation with us,
* or something went wrong.
*/
GNUNET_SET_STATUS_FAILURE,
/**
- * Success, all elements have been returned (but the other
- * peer might still be receiving some from us, so we are not done).
+ * Success, all elements have been returned (but the other peer
+ * might still be receiving some from us, so we are not done). Only
+ * used during UNION operation.
*/
GNUNET_SET_STATUS_HALF_DONE,