aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-communicator-udp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/gnunet-communicator-udp.c')
-rw-r--r--src/transport/gnunet-communicator-udp.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/transport/gnunet-communicator-udp.c b/src/transport/gnunet-communicator-udp.c
index 550ba7c85..fa8eb6acb 100644
--- a/src/transport/gnunet-communicator-udp.c
+++ b/src/transport/gnunet-communicator-udp.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 * - consider imposing transmission limits in the absence 27 * - consider imposing transmission limits in the absence
29 * of ACKs; or: maybe this should be done at TNG service level? 28 * of ACKs; or: maybe this should be done at TNG service level?
30 * (at least the receiver might want to enforce limits on 29 * (at least the receiver might want to enforce limits on
@@ -1784,12 +1783,12 @@ udp_address_to_sockaddr (const char *bindto,
1784 bindto); 1783 bindto);
1785 return NULL; 1784 return NULL;
1786 } 1785 }
1787 /* FIXME #V6: add test to util/ for IPv6 availability, 1786 if ( (GNUNET_NO ==
1788 and depending on the result, go directly for v4-only */ 1787 GNUNET_NETWORK_test_pf (PF_INET6)) ||
1789 if (GNUNET_YES == 1788 (GNUNET_YES ==
1790 GNUNET_CONFIGURATION_get_value_yesno (cfg, 1789 GNUNET_CONFIGURATION_get_value_yesno (cfg,
1791 COMMUNICATOR_CONFIG_SECTION, 1790 COMMUNICATOR_CONFIG_SECTION,
1792 "DISABLE_V6")) 1791 "DISABLE_V6")) )
1793 { 1792 {
1794 struct sockaddr_in *i4; 1793 struct sockaddr_in *i4;
1795 1794