Use SOCK_DGRAM for TFTP. Consider setting this up at one central place, we
authorDaniel Stenberg <daniel@haxx.se>
Tue, 6 Sep 2005 10:37:57 +0000 (10:37 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 6 Sep 2005 10:37:57 +0000 (10:37 +0000)
have this check done on far too many places by now...

lib/hostthre.c

index 13761c5..ebd9e7d 100644 (file)
@@ -804,7 +804,10 @@ Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn,
 
   memset(&hints, 0, sizeof(hints));
   hints.ai_family = pf;
-  hints.ai_socktype = SOCK_STREAM;
+  if(conn->protocol & PROT_TFTP)
+    hints.ai_socktype = SOCK_DGRAM;
+  else
+    hints.ai_socktype = SOCK_STREAM;
   hints.ai_flags = AI_CANONNAME;
   itoa(port, sbuf, 10);