fix inet_aton to accept the generic "numbers-and-dots" IPv4 address format

This commit is contained in:
Szabolcs Nagy 2013-10-22 12:23:17 +00:00
parent bb93ac3358
commit 59b8dc08f7
1 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,10 @@ in_addr_t inet_network(const char *p)
int inet_aton(const char *cp, struct in_addr *inp) int inet_aton(const char *cp, struct in_addr *inp)
{ {
return inet_pton(AF_INET, cp, (void *)inp) > 0; struct sockaddr_in sin;
int r = __ipparse(&sin, AF_INET, cp);
*inp = sin.sin_addr;
return r;
} }
struct in_addr inet_makeaddr(int net, int host) struct in_addr inet_makeaddr(int net, int host)