tolerate additional IPv4 address now available for gnunet.org
[oweals/gnunet.git] / src / transport / plugin_transport_http_common.c
index e9576d72bb715f7b07e4eaac62d761c2017de0ef..0a0545dd6abe2e637f925705e52c56636ca0176b 100644 (file)
@@ -14,6 +14,8 @@
 
  You should have received a copy of the GNU Affero General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+     SPDX-License-Identifier: AGPL3.0-or-later
  */
 
 /**
@@ -896,17 +898,17 @@ http_common_cmp_addresses (const void *addr1,
  * @param address the address
  * @return the network type
  */
-enum GNUNET_ATS_Network_Type
+enum GNUNET_NetworkType
 http_common_get_network_for_address (struct GNUNET_TRANSPORT_PluginEnvironment *env,
                                      const struct GNUNET_HELLO_Address *address)
 {
 
   struct sockaddr *sa;
-  enum GNUNET_ATS_Network_Type net_type;
+  enum GNUNET_NetworkType net_type;
   size_t salen = 0;
   int res;
 
-  net_type = GNUNET_ATS_NET_UNSPECIFIED;
+  net_type = GNUNET_NT_UNSPECIFIED;
   sa = http_common_socket_from_address (address->address,
                                         address->address_length,
                                         &res);