aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-communicator-tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/gnunet-communicator-tcp.c')
-rw-r--r--src/transport/gnunet-communicator-tcp.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/transport/gnunet-communicator-tcp.c b/src/transport/gnunet-communicator-tcp.c
index 47bffa2ba..95719852c 100644
--- a/src/transport/gnunet-communicator-tcp.c
+++ b/src/transport/gnunet-communicator-tcp.c
@@ -24,7 +24,6 @@
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 * 25 *
26 * TODO: 26 * TODO:
27 * - add and use util/ check for IPv6 availability (#5553)
28 * - support DNS names in BINDTO option (#5528) 27 * - support DNS names in BINDTO option (#5528)
29 * - support NAT connection reversal method (#5529) 28 * - support NAT connection reversal method (#5529)
30 * - support other TCP-specific NAT traversal methods (#5531) 29 * - support other TCP-specific NAT traversal methods (#5531)
@@ -1172,12 +1171,12 @@ tcp_address_to_sockaddr (const char *bindto,
1172 bindto); 1171 bindto);
1173 return NULL; 1172 return NULL;
1174 } 1173 }
1175 /* FIXME: add test to util/ for IPv6 availability, 1174 if ( (GNUNET_NO ==
1176 and depending on the result, go directly for v4-only */ 1175 GNUNET_NETWORK_test_pf (PF_INET6)) ||
1177 if (GNUNET_YES == 1176 (GNUNET_YES ==
1178 GNUNET_CONFIGURATION_get_value_yesno (cfg, 1177 GNUNET_CONFIGURATION_get_value_yesno (cfg,
1179 COMMUNICATOR_CONFIG_SECTION, 1178 COMMUNICATOR_CONFIG_SECTION,
1180 "DISABLE_V6")) 1179 "DISABLE_V6")) )
1181 { 1180 {
1182 struct sockaddr_in *i4; 1181 struct sockaddr_in *i4;
1183 1182