aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-05 19:25:51 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-05 19:25:51 +0000
commit1388aef05980aca3e4973863da73e08885f05054 (patch)
treed11a62d99ad895e7d218b7aacddc8dda476f2d4d /src/include
parent99f7bc8650e09914047613c9a211c1e2c986d9f0 (diff)
downloadgnunet-1388aef05980aca3e4973863da73e08885f05054.tar.gz
gnunet-1388aef05980aca3e4973863da73e08885f05054.zip
-fix double-free, clarify API
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_conversation_service.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/include/gnunet_conversation_service.h b/src/include/gnunet_conversation_service.h
index 848643f95..cb84fcc67 100644
--- a/src/include/gnunet_conversation_service.h
+++ b/src/include/gnunet_conversation_service.h
@@ -127,18 +127,24 @@ enum GNUNET_CONVERSATION_EventCode
127 GNUNET_CONVERSATION_EC_READY, 127 GNUNET_CONVERSATION_EC_READY,
128 128
129 /** 129 /**
130 * We failed to locate a phone record in GNS. 130 * We failed to locate a phone record in GNS. After this invocation,
131 * the respective call handle will be automatically destroyed and the
132 * client must no longer call #GNUNET_CONVERSATION_call_stop.
131 */ 133 */
132 GNUNET_CONVERSATION_EC_GNS_FAIL, 134 GNUNET_CONVERSATION_EC_GNS_FAIL,
133 135
134 /** 136 /**
135 * The phone is busy. Varargs will be empty. 137 * The phone is busy. Varargs will be empty. After this invocation,
138 * the respective call handle will be automatically destroyed and the
139 * client must no longer call #GNUNET_CONVERSATION_call_stop.
136 */ 140 */
137 GNUNET_CONVERSATION_EC_BUSY, 141 GNUNET_CONVERSATION_EC_BUSY,
138 142
139 /** 143 /**
140 * The conversation was terminated, a reason may be supplied 144 * The conversation was terminated, a reason may be supplied as a
141 * as a `const char *` in the varargs. 145 * `const char *` in the varargs. After this invocation, the
146 * respective call handle will be automatically destroyed and the
147 * client must no longer call #GNUNET_CONVERSATION_call_stop.
142 */ 148 */
143 GNUNET_CONVERSATION_EC_TERMINATED 149 GNUNET_CONVERSATION_EC_TERMINATED
144 150