--- branches/newio/src/irc_res.c 2013/07/24 18:25:34 2423 +++ branches/newio/src/irc_res.c 2013/07/28 17:18:24 2424 @@ -251,7 +251,7 @@ start_resolver(void) /* If we need an IPv4 socket, and don't have one, open it. */ if (need_v4 && !s_active(&res_socket_v4)) { - int fd = os_socket(SOCK_DGRAM, AF_INET); + int fd = os_socket(SOCK_DGRAM, AF_INET, "Resolver UDPv4 socket"); if (fd >= 0) socket_add(&res_socket_v4, res_readreply, NULL, SS_DATAGRAM, SOCK_EVENT_READABLE, fd); @@ -260,7 +260,7 @@ start_resolver(void) /* If we need an IPv6 socket, and don't have one, open it. */ if (need_v6 && !s_active(&res_socket_v6)) { - int fd = os_socket(SOCK_DGRAM, AF_INET6); + int fd = os_socket(SOCK_DGRAM, AF_INET6, "Resolver UDPv6 socket"); if (fd >= 0) socket_add(&res_socket_v6, res_readreply, NULL, SS_DATAGRAM, SOCK_EVENT_READABLE, fd);