From a5a18a2b84f29595a85bca039df184a454443093 Mon Sep 17 00:00:00 2001 From: pranomostro Date: Sat, 3 Jun 2017 19:58:18 +0200 Subject: Add connecting to tcp relays by default. I'm currently staying in India, and strangely enough ratox could not connect using tox_bootstrap(). It would just continue attempting to connect until the end of time. Using tox_add_tcp_relay() additionally fixes this isssue. It is also the strategy utox uses: https://github.com/uTox/uTox/blob/49bc764d23a02ab8286ef6f2085e8e592bccde1e/src/tox.c#L137 Also, nodes.h needed to be regenerated for using tcp ports and relays. --- nodegen | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'nodegen') diff --git a/nodegen b/nodegen index 8134198..4133e3d 100755 --- a/nodegen +++ b/nodegen @@ -3,7 +3,10 @@ echo 'static struct node nodes[] = {' curl -s https://nodes.tox.chat/json | -jq --tab '[.nodes[] | select(.last_ping > 0) | {".addr4": .ipv4, ".addr6": .ipv6, ".port": .port, ".idstr": .public_key}]' | -sed 's/"-"/NULL/; s/"\(\.[0-9a-z]\+\)":/\1 =/; 1d; $d' +jq --tab '[.nodes[] | + select(.last_ping > 0) | + select(.tcp_ports | length > 0) | + {".addr4": .ipv4, ".addr6": .ipv6, ".udp_port": .port, ".tcp_port": .tcp_ports[0], ".idstr": .public_key}]' | +sed 's/"-"/NULL/; s/"\(\.[0-9a-z_]\+\)":/\1 =/; 1d; $d' echo '};' -- cgit v1.2.3