@@ -1144,10 +1144,7 @@
static bool
ipv6_addr_safe_hexplusbits(const char *ipv6_prefix_spec)
{
- struct in6_addr t_addr;
- unsigned int t_bits;
-
- return get_ipv6_addr(ipv6_prefix_spec, &t_addr, &t_bits, M_WARN);
+ return get_ipv6_addr(ipv6_prefix_spec, NULL, NULL, M_WARN);
}
static char *
@@ -72,11 +72,6 @@
}
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wconversion"
-#endif
-
/*
* Functions related to the translation of DNS names to IP addresses.
*/
@@ -180,7 +175,7 @@
if (netbits)
{
- *netbits = bits;
+ *netbits = (unsigned int)bits;
}
/* restore '/' separator, if any */
@@ -683,6 +678,11 @@
}
}
+#if defined(__GNUC__) || defined(__clang__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wconversion"
+#endif
+
static void
create_socket(struct link_socket *sock, struct addrinfo *addr)
{
@@ -738,6 +738,10 @@
bind_local(sock, addr->ai_family);
}
+#if defined(__GNUC__) || defined(__clang__)
+#pragma GCC diagnostic pop
+#endif
+
#ifdef TARGET_ANDROID
static void
protect_fd_nonlocal(int fd, const struct sockaddr *addr)
@@ -861,10 +865,6 @@
gc_free(&gc);
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
static socket_descriptor_t
socket_listen_accept(socket_descriptor_t sd, struct link_socket_actual *act,
const struct addrinfo *local, bool do_listen,