summaryrefslogtreecommitdiff
path: root/toxcore/tox.h
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-02-14 23:00:12 -0500
committerirungentoo <irungentoo@gmail.com>2015-02-14 23:00:12 -0500
commit3c7888d7523f876740084c7315e31f973920212b (patch)
treeb00246db826e52ae20ba5542fe96b6dd56512a18 /toxcore/tox.h
parenteac0d435f35db468435fa596a3b00b593d6bf3e9 (diff)
A bit of new api work done.
Diffstat (limited to 'toxcore/tox.h')
-rw-r--r--toxcore/tox.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 8dab7002..61f40539 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -418,12 +418,16 @@ typedef enum TOX_ERR_NEW {
418 */ 418 */
419 TOX_ERR_NEW_PORT_ALLOC, 419 TOX_ERR_NEW_PORT_ALLOC,
420 /** 420 /**
421 * proxy_enabled was true, but the proxy_address passed had an invalid format 421 * proxy_type was invalid.
422 */
423 TOX_ERR_PROXY_TYPE,
424 /**
425 * proxy_type was valid but the proxy_address passed had an invalid format
422 * or was NULL. 426 * or was NULL.
423 */ 427 */
424 TOX_ERR_NEW_PROXY_BAD_HOST, 428 TOX_ERR_NEW_PROXY_BAD_HOST,
425 /** 429 /**
426 * proxy_enabled was true, but the proxy_port was invalid. 430 * proxy_type was valid, but the proxy_port was invalid.
427 */ 431 */
428 TOX_ERR_NEW_PROXY_BAD_PORT, 432 TOX_ERR_NEW_PROXY_BAD_PORT,
429 /** 433 /**