diff options
Diffstat (limited to 'plugins/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/netutils.c b/plugins/netutils.c index 926547e..c567df5 100644 --- a/plugins/netutils.c +++ b/plugins/netutils.c | |||
@@ -256,6 +256,7 @@ my_connect (char *host_name, int port, int *sd, int proto) | |||
256 | memset (&hints, 0, sizeof (hints)); | 256 | memset (&hints, 0, sizeof (hints)); |
257 | hints.ai_family = PF_UNSPEC; | 257 | hints.ai_family = PF_UNSPEC; |
258 | hints.ai_protocol = proto; | 258 | hints.ai_protocol = proto; |
259 | hints.ai_socktype = (proto == IPPROTO_UDP) ? SOCK_DGRAM : SOCK_STREAM; | ||
259 | 260 | ||
260 | snprintf (port_str, sizeof (port_str), "%d", port); | 261 | snprintf (port_str, sizeof (port_str), "%d", port); |
261 | result = getaddrinfo (host_name, port_str, &hints, &res); | 262 | result = getaddrinfo (host_name, port_str, &hints, &res); |