aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_common.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-11-23 17:19:53 +0100
committerChristian Grothoff <christian@grothoff.org>2018-11-23 17:19:53 +0100
commit61787bfa37e0ac5998e01d9c4806600033c19c74 (patch)
tree1ceb843f63aa076682ebfa2de2250dc32ee65004 /src/transport/plugin_transport_http_common.c
parent4a3be482811fe8ed1502fea2c12a8449b560a99e (diff)
downloadgnunet-61787bfa37e0ac5998e01d9c4806600033c19c74.tar.gz
gnunet-61787bfa37e0ac5998e01d9c4806600033c19c74.zip
rename fest: use new libgnunetnt instead of old libgnunetats logic for network type classification
Diffstat (limited to 'src/transport/plugin_transport_http_common.c')
-rw-r--r--src/transport/plugin_transport_http_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport/plugin_transport_http_common.c b/src/transport/plugin_transport_http_common.c
index e9576d72b..3f0452d0b 100644
--- a/src/transport/plugin_transport_http_common.c
+++ b/src/transport/plugin_transport_http_common.c
@@ -896,17 +896,17 @@ http_common_cmp_addresses (const void *addr1,
896 * @param address the address 896 * @param address the address
897 * @return the network type 897 * @return the network type
898 */ 898 */
899enum GNUNET_ATS_Network_Type 899enum GNUNET_NetworkType
900http_common_get_network_for_address (struct GNUNET_TRANSPORT_PluginEnvironment *env, 900http_common_get_network_for_address (struct GNUNET_TRANSPORT_PluginEnvironment *env,
901 const struct GNUNET_HELLO_Address *address) 901 const struct GNUNET_HELLO_Address *address)
902{ 902{
903 903
904 struct sockaddr *sa; 904 struct sockaddr *sa;
905 enum GNUNET_ATS_Network_Type net_type; 905 enum GNUNET_NetworkType net_type;
906 size_t salen = 0; 906 size_t salen = 0;
907 int res; 907 int res;
908 908
909 net_type = GNUNET_ATS_NET_UNSPECIFIED; 909 net_type = GNUNET_NT_UNSPECIFIED;
910 sa = http_common_socket_from_address (address->address, 910 sa = http_common_socket_from_address (address->address,
911 address->address_length, 911 address->address_length,
912 &res); 912 &res);