X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Ffake-getaddrinfo.c;h=37a65b894b46c687277753f95b24d4366dc0c184;hb=d5de0bca747e9ba43bc28fbef54aaf5cfc321f5b;hp=db50f739b6778a791bc8b4394127f16bca8ec14c;hpb=d917c8cb6b69475d568ccbe82389b9f2b3eb5e80;p=meshlink diff --git a/src/fake-getaddrinfo.c b/src/fake-getaddrinfo.c index db50f739..37a65b89 100644 --- a/src/fake-getaddrinfo.c +++ b/src/fake-getaddrinfo.c @@ -11,23 +11,21 @@ #include "system.h" -#include "ipv4.h" -#include "ipv6.h" #include "fake-getaddrinfo.h" #include "xalloc.h" #if !HAVE_DECL_GAI_STRERROR char *gai_strerror(int ecode) { - switch (ecode) { - case EAI_NODATA: - return "No address associated with hostname"; - case EAI_MEMORY: - return "Memory allocation failure"; - case EAI_FAMILY: - return "Address family not supported"; - default: - return "Unknown error"; + switch(ecode) { + case EAI_NODATA: + return "No address associated with hostname"; + case EAI_MEMORY: + return "Memory allocation failure"; + case EAI_FAMILY: + return "Address family not supported"; + default: + return "Unknown error"; } } #endif /* !HAVE_GAI_STRERROR */ @@ -48,7 +46,7 @@ void freeaddrinfo(struct addrinfo *ai) { static struct addrinfo *malloc_ai(uint16_t port, uint32_t addr) { struct addrinfo *ai; - ai = xmalloc_and_zero(sizeof(struct addrinfo) + sizeof(struct sockaddr_in)); + ai = xzalloc(sizeof(struct addrinfo) + sizeof(struct sockaddr_in)); ai->ai_addr = (struct sockaddr *)(ai + 1); ai->ai_addrlen = sizeof(struct sockaddr_in); @@ -70,15 +68,15 @@ int getaddrinfo(const char *hostname, const char *servname, const struct addrinf if(hints && hints->ai_family != AF_INET && hints->ai_family != AF_UNSPEC) return EAI_FAMILY; - if (servname) + if(servname) port = htons(atoi(servname)); - if (hints && hints->ai_flags & AI_PASSIVE) { + if(hints && hints->ai_flags & AI_PASSIVE) { *res = malloc_ai(port, htonl(0x00000000)); return 0; } - if (!hostname) { + if(!hostname) { *res = malloc_ai(port, htonl(0x7f000001)); return 0; } @@ -88,7 +86,7 @@ int getaddrinfo(const char *hostname, const char *servname, const struct addrinf if(!hp || !hp->h_addr_list || !hp->h_addr_list[0]) return EAI_NODATA; - for (i = 0; hp->h_addr_list[i]; i++) { + for(i = 0; hp->h_addr_list[i]; i++) { *res = malloc_ai(port, ((struct in_addr *)hp->h_addr_list[i])->s_addr); if(prev)