This repository has been archived by the owner on Oct 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
http-host.c
95 lines (86 loc) · 2.55 KB
/
http-host.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
http-host.c - thread-safe host lookup
Copyright (C) 2008 siliconforks.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <config.h>
#include "http-server.h"
#include "util.h"
int xgethostbyname(const char * host, struct in_addr * a) {
#if defined(__CYGWIN__) || defined(__MINGW32__)
/* gethostbyname is thread-safe */
struct hostent * p = gethostbyname(host);
if (p == NULL || p->h_addrtype != AF_INET) {
return -1;
}
*a = *((struct in_addr *) p->h_addr);
return 0;
#elif HAVE_GETADDRINFO
struct addrinfo hints;
hints.ai_flags = 0;
hints.ai_family = PF_INET;
hints.ai_socktype = 0;
hints.ai_protocol = 0;
hints.ai_addrlen = 0;
hints.ai_addr = NULL;
hints.ai_canonname = NULL;
hints.ai_next = NULL;
struct addrinfo * p;
int result = getaddrinfo(host, NULL, &hints, &p);
if (result != 0 || p == NULL) {
return -1;
}
if (p->ai_family != PF_INET) {
freeaddrinfo(p);
return -1;
}
struct sockaddr_in * address_and_port = (struct sockaddr_in *) p->ai_addr;
*a = address_and_port->sin_addr;
freeaddrinfo(p);
return 0;
#elif HAVE_GETHOSTBYNAME_R
struct hostent h;
struct hostent * p;
char * buffer;
size_t buffer_size;
int error;
int result;
buffer_size = 1024;
buffer = xmalloc(buffer_size);
while ((result = gethostbyname_r(host, &h, buffer, buffer_size, &p, &error)) == ERANGE) {
buffer_size = mulst(buffer_size, 2);
buffer = xrealloc(buffer, buffer_size);
}
if (result != 0 || p == NULL || p->h_addrtype != AF_INET) {
free(buffer);
return -1;
}
*a = *((struct in_addr *) p->h_addr);
free(buffer);
return 0;
#else
#error "No thread-safe host lookup available"
#endif
}
#ifndef HAVE_INET_ATON
int inet_aton(const char * name, struct in_addr * a) {
unsigned long result = inet_addr(name);
if (result == INADDR_NONE) {
return 0;
}
else {
a->s_addr = result;
return 1;
}
}
#endif