summaryrefslogtreecommitdiff
path: root/toxcore/tox.api.h
diff options
context:
space:
mode:
authorzugz <mbays+tox@sdf.org>2018-07-25 08:46:28 +0100
committerzugz (tox) <mbays+tox@sdf.org>2018-08-02 22:03:18 +0100
commitaa63c1330c49ee1c4b675037e2e54516950203a2 (patch)
treed9064b106cd62e7c7fbc212c4dbaefc0298d977b /toxcore/tox.api.h
parent3a4987da18b165d5a5297ddaf64f1336958bb3c7 (diff)
Fix problems with initial connections and name-setting in conferences
* test names in conference_test * raise error on attempt to invite friend to group before we are connected * revise handling of temporary invited connections We are now careful not to prematurely delete a connection to a peer established during the invitation process; namely, before we have sufficient other connections and have confirmed that we have an alternative route to the peer. * process out-of-order messages from a peer * don't reset names when handling a Peer Response
Diffstat (limited to 'toxcore/tox.api.h')
-rw-r--r--toxcore/tox.api.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h
index 6cb3145b..7cc58e3b 100644
--- a/toxcore/tox.api.h
+++ b/toxcore/tox.api.h
@@ -2306,6 +2306,10 @@ namespace conference {
2306 * The invite packet failed to send. 2306 * The invite packet failed to send.
2307 */ 2307 */
2308 FAIL_SEND, 2308 FAIL_SEND,
2309 /**
2310 * The client is not connected to the conference.
2311 */
2312 NO_CONNECTION,
2309 } 2313 }
2310 2314
2311 2315