summaryrefslogtreecommitdiff
path: root/auto_tests/messenger_test.c
diff options
context:
space:
mode:
authorCoren[m] <Break@Ocean>2013-09-11 20:50:15 +0200
committerCoren[m] <Break@Ocean>2013-09-11 20:50:15 +0200
commit513e37815db8319dd015bf03b588380a4e3c61d3 (patch)
tree809738c8ff2370936638565ff096d387d7222f85 /auto_tests/messenger_test.c
parentd0f5ad34ae2cb88e921cf6f6d829d611b5ea2152 (diff)
tox.h, DHT.h:
- tox_bootstrap_ex(), DHT_bootstrap_ex() renamed to tox_bootstrap_from_address(), DHT_bootstrap_from_address() - (handle_)sendnodes_ex() renamed to (handle_)sendnodes_ipv6() - only sending sendnodes_ipv6() if we're actually IPv6 enabled - changed comments to conform better nTox.c, Messenger_text.c, DHT_test.c, DHT_bootstrap.c: - fallout from *_ex() to *_from_address() DHT_bootstrap.c: - corrected a potentially wrong info message util.c: - fixed logfile name: now (funcptr) => now() (number) network.c: - addead comment about the necessity of bind() to succeed auto_test/messenger_test.c: - defaulting ipv6enabled to TOX_ENABLE_IPV6_DEFAULT LAN_discovery.c: - slight cleanup and comments for clarity
Diffstat (limited to 'auto_tests/messenger_test.c')
-rw-r--r--auto_tests/messenger_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto_tests/messenger_test.c b/auto_tests/messenger_test.c
index 6677c345..1b72a92f 100644
--- a/auto_tests/messenger_test.c
+++ b/auto_tests/messenger_test.c
@@ -278,8 +278,8 @@ int main(int argc, char *argv[])
278 good_id_b = hex_string_to_bin(good_id_b_str); 278 good_id_b = hex_string_to_bin(good_id_b_str);
279 bad_id = hex_string_to_bin(bad_id_str); 279 bad_id = hex_string_to_bin(bad_id_str);
280 280
281 /* no IPv6 enabled yet */ 281 /* IPv6 status from global define */
282 m = initMessenger(0); 282 m = initMessenger(TOX_ENABLE_IPV6_DEFAULT);
283 283
284 /* setup a default friend and friendnum */ 284 /* setup a default friend and friendnum */
285 if (m_addfriend_norequest(m, (uint8_t *)friend_id) < 0) 285 if (m_addfriend_norequest(m, (uint8_t *)friend_id) < 0)