From 61787bfa37e0ac5998e01d9c4806600033c19c74 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 23 Nov 2018 17:19:53 +0100 Subject: rename fest: use new libgnunetnt instead of old libgnunetats logic for network type classification --- src/transport/plugin_transport_xu.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/transport/plugin_transport_xu.c') diff --git a/src/transport/plugin_transport_xu.c b/src/transport/plugin_transport_xu.c index 59e00f80e..639b38671 100644 --- a/src/transport/plugin_transport_xu.c +++ b/src/transport/plugin_transport_xu.c @@ -203,7 +203,7 @@ struct GNUNET_ATS_Session /** * Network type of the address. */ - enum GNUNET_ATS_Network_Type scope; + enum GNUNET_NetworkType scope; /** * Is this session about to be destroyed (sometimes we cannot @@ -362,7 +362,7 @@ xu_query_keepalive_factor (void *cls) * @param session the session * @return the network type */ -static enum GNUNET_ATS_Network_Type +static enum GNUNET_NetworkType xu_plugin_get_network (void *cls, struct GNUNET_ATS_Session *session) { @@ -378,7 +378,7 @@ xu_plugin_get_network (void *cls, * @param address the address * @return the network type */ -static enum GNUNET_ATS_Network_Type +static enum GNUNET_NetworkType xu_plugin_get_network_for_address (void *cls, const struct GNUNET_HELLO_Address *address) { @@ -423,7 +423,7 @@ xu_plugin_get_network_for_address (void *cls, else { GNUNET_break (0); - return GNUNET_ATS_NET_UNSPECIFIED; + return GNUNET_NT_UNSPECIFIED; } return plugin->env->get_address_type (plugin->env->cls, sb, @@ -1215,13 +1215,13 @@ analyze_send_error (struct Plugin *plugin, socklen_t slen, int error) { - enum GNUNET_ATS_Network_Type type; + enum GNUNET_NetworkType type; type = plugin->env->get_address_type (plugin->env->cls, sa, slen); - if ( ( (GNUNET_ATS_NET_LAN == type) || - (GNUNET_ATS_NET_WAN == type) ) && + if ( ( (GNUNET_NT_LAN == type) || + (GNUNET_NT_WAN == type) ) && ( (ENETUNREACH == errno) || (ENETDOWN == errno) ) ) { @@ -1619,7 +1619,7 @@ session_timeout (void *cls) static struct GNUNET_ATS_Session * xu_plugin_create_session (void *cls, const struct GNUNET_HELLO_Address *address, - enum GNUNET_ATS_Network_Type network_type) + enum GNUNET_NetworkType network_type) { struct Plugin *plugin = cls; struct GNUNET_ATS_Session *s; @@ -1679,7 +1679,7 @@ xu_plugin_get_session (void *cls, { struct Plugin *plugin = cls; struct GNUNET_ATS_Session *s; - enum GNUNET_ATS_Network_Type network_type = GNUNET_ATS_NET_UNSPECIFIED; + enum GNUNET_NetworkType network_type = GNUNET_NT_UNSPECIFIED; const struct IPv4XuAddress *xu_v4; const struct IPv6XuAddress *xu_v6; @@ -1731,7 +1731,7 @@ xu_plugin_get_session (void *cls, (const struct sockaddr *) &v6, sizeof (v6)); } - GNUNET_break (GNUNET_ATS_NET_UNSPECIFIED != network_type); + GNUNET_break (GNUNET_NT_UNSPECIFIED != network_type); return xu_plugin_create_session (cls, address, network_type); @@ -1752,12 +1752,12 @@ process_xu_message (struct Plugin *plugin, const struct XUMessage *msg, const union XuAddress *xu_addr, size_t xu_addr_len, - enum GNUNET_ATS_Network_Type network_type) + enum GNUNET_NetworkType network_type) { struct GNUNET_ATS_Session *s; struct GNUNET_HELLO_Address *address; - GNUNET_break (GNUNET_ATS_NET_UNSPECIFIED != network_type); + GNUNET_break (GNUNET_NT_UNSPECIFIED != network_type); if (0 != ntohl (msg->reserved)) { GNUNET_break_op(0); @@ -1827,7 +1827,7 @@ xu_select_read (struct Plugin *plugin, const struct sockaddr_in6 *sa6; const union XuAddress *int_addr; size_t int_addr_len; - enum GNUNET_ATS_Network_Type network_type; + enum GNUNET_NetworkType network_type; fromlen = sizeof (addr); memset (&addr, -- cgit v1.2.3