aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_set_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-11-30 00:45:18 +0000
committerChristian Grothoff <christian@grothoff.org>2014-11-30 00:45:18 +0000
commit2faa745b7bd47afc33d2619896a8928d1b70c6ed (patch)
tree84ab25a7e9f1d2237c0dde37a1f80137a75f8415 /src/include/gnunet_set_service.h
parent991f51dc78d1690bdf169bca8028a3d0c5fbb177 (diff)
downloadgnunet-2faa745b7bd47afc33d2619896a8928d1b70c6ed.tar.gz
gnunet-2faa745b7bd47afc33d2619896a8928d1b70c6ed.zip
-remove dead state
Diffstat (limited to 'src/include/gnunet_set_service.h')
-rw-r--r--src/include/gnunet_set_service.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/include/gnunet_set_service.h b/src/include/gnunet_set_service.h
index ada971d09..2d40b3052 100644
--- a/src/include/gnunet_set_service.h
+++ b/src/include/gnunet_set_service.h
@@ -96,24 +96,22 @@ enum GNUNET_SET_OperationType
96enum GNUNET_SET_Status 96enum GNUNET_SET_Status
97{ 97{
98 /** 98 /**
99 * Everything went ok. 99 * Everything went ok, we are transmitting an element of the
100 * result (in set, or to be removed from set, depending on
101 * the `enum GNUNET_SET_ResultMode`).
100 */ 102 */
101 GNUNET_SET_STATUS_OK, 103 GNUNET_SET_STATUS_OK,
102 104
103 /** 105 /**
104 * There was a timeout.
105 */
106 GNUNET_SET_STATUS_TIMEOUT,
107
108 /**
109 * The other peer refused to to the operation with us, 106 * The other peer refused to to the operation with us,
110 * or something went wrong. 107 * or something went wrong.
111 */ 108 */
112 GNUNET_SET_STATUS_FAILURE, 109 GNUNET_SET_STATUS_FAILURE,
113 110
114 /** 111 /**
115 * Success, all elements have been returned (but the other 112 * Success, all elements have been returned (but the other peer
116 * peer might still be receiving some from us, so we are not done). 113 * might still be receiving some from us, so we are not done). Only
114 * used during UNION operation.
117 */ 115 */
118 GNUNET_SET_STATUS_HALF_DONE, 116 GNUNET_SET_STATUS_HALF_DONE,
119 117