aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_common.c
diff options
context:
space:
mode:
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);