When calling getaddrinfo() for a listening socket, pass in a suggested type
authorben <ben@cda61777-01e9-0310-a592-d414129be87e>
Sat, 22 Jan 2005 15:32:10 +0000 (15:32 +0000)
committerben <ben@cda61777-01e9-0310-a592-d414129be87e>
Sat, 22 Jan 2005 15:32:10 +0000 (15:32 +0000)
of SOCK_STREAM, since that's what we'll be using.

git-svn-id: svn://svn.tartarus.org/sgt/putty@5170 cda61777-01e9-0310-a592-d414129be87e

unix/uxnet.c

index be7fb70..357fc86 100644 (file)
@@ -705,7 +705,7 @@ Socket sk_newlistener(char *srcaddr, int port, Plug plug, int local_host_only, i
 #ifndef NO_IPV6
         hints.ai_flags = AI_NUMERICHOST;
         hints.ai_family = address_family;
-        hints.ai_socktype = 0;
+        hints.ai_socktype = SOCK_STREAM;
         hints.ai_protocol = 0;
         hints.ai_addrlen = 0;
         hints.ai_addr = NULL;