summaryrefslogtreecommitdiffstats
path: root/lib/curl_addrinfo.c
diff options
context:
space:
mode:
authorCurl Upstream <curl-library@cool.haxx.se>2018-05-15 14:43:56 (GMT)
committerBrad King <brad.king@kitware.com>2018-05-18 14:16:12 (GMT)
commitd431136e029c652f5913bcebeaab3b9236b114c4 (patch)
treec0838b4432a3786a323c94a680bb16f644198311 /lib/curl_addrinfo.c
parentaf9e654045f11028e50dac4781e297834129a749 (diff)
downloadCMake-d431136e029c652f5913bcebeaab3b9236b114c4.zip
CMake-d431136e029c652f5913bcebeaab3b9236b114c4.tar.gz
CMake-d431136e029c652f5913bcebeaab3b9236b114c4.tar.bz2
curl 2018-05-15 (cb013830)
Code extracted from: https://github.com/curl/curl.git at commit cb013830383f1ccc9757aba36bc32df5ec281c02 (curl-7_60_0).
Diffstat (limited to 'lib/curl_addrinfo.c')
-rw-r--r--lib/curl_addrinfo.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/curl_addrinfo.c b/lib/curl_addrinfo.c
index ec76f75..55d5a39 100644
--- a/lib/curl_addrinfo.c
+++ b/lib/curl_addrinfo.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -50,6 +50,10 @@
# define in_addr_t unsigned long
#endif
+#if defined(WIN32) && defined(USE_UNIX_SOCKETS)
+#include <afunix.h>
+#endif
+
#include <stddef.h>
#include "curl_addrinfo.h"
@@ -341,7 +345,7 @@ Curl_he2ai(const struct hostent *he, int port)
addr = (void *)ai->ai_addr; /* storage area for this info */
memcpy(&addr->sin_addr, curr, sizeof(struct in_addr));
- addr->sin_family = (unsigned short)(he->h_addrtype);
+ addr->sin_family = (CURL_SA_FAMILY_T)(he->h_addrtype);
addr->sin_port = htons((unsigned short)port);
break;
@@ -350,7 +354,7 @@ Curl_he2ai(const struct hostent *he, int port)
addr6 = (void *)ai->ai_addr; /* storage area for this info */
memcpy(&addr6->sin6_addr, curr, sizeof(struct in6_addr));
- addr6->sin6_family = (unsigned short)(he->h_addrtype);
+ addr6->sin6_family = (CURL_SA_FAMILY_T)(he->h_addrtype);
addr6->sin6_port = htons((unsigned short)port);
break;
#endif