X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Ffake-getaddrinfo.c;h=9aaddaf8c2fe2f6270558765b1ee17abaa34cda6;hb=516bfe0557afe6adaa3ea73494b5fe1cf5587b64;hp=cb821b5f5785fa67ea22fb40192abbc40e704b59;hpb=5b07039b0712bee0f19749d63116a10fb08a2d8b;p=meshlink diff --git a/src/fake-getaddrinfo.c b/src/fake-getaddrinfo.c index cb821b5f..9aaddaf8 100644 --- a/src/fake-getaddrinfo.c +++ b/src/fake-getaddrinfo.c @@ -11,23 +11,24 @@ #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 */ @@ -67,32 +68,36 @@ int getaddrinfo(const char *hostname, const char *servname, const struct addrinf int i; uint16_t port = 0; - if(hints && hints->ai_family != AF_INET && hints->ai_family != AF_UNSPEC) + 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; } hp = gethostbyname(hostname); - if(!hp || !hp->h_addr_list || !hp->h_addr_list[0]) + 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) + if(prev) { prev->ai_next = *res; + } prev = *res; }