X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=lib%2Ffake-getaddrinfo.c;fp=lib%2Ffake-getaddrinfo.c;h=df3d34764dc9680dd1d625cd10ed94e2bdfb19d0;hp=10672b7e6f07eee8749a120c66eeff1a2703cbf8;hb=075e6828a7533e7daa790225f17aa6bb39703278;hpb=b5ccce296848aab72d574ca3de14af5fdf3efa4d diff --git a/lib/fake-getaddrinfo.c b/lib/fake-getaddrinfo.c index 10672b7e..df3d3476 100644 --- a/lib/fake-getaddrinfo.c +++ b/lib/fake-getaddrinfo.c @@ -16,9 +16,9 @@ #include "fake-getaddrinfo.h" #include "xalloc.h" + #if !HAVE_DECL_GAI_STRERROR -char *gai_strerror(int ecode) -{ +char *gai_strerror(int ecode) { switch (ecode) { case EAI_NODATA: return "No address associated with hostname"; @@ -33,8 +33,7 @@ char *gai_strerror(int ecode) #endif /* !HAVE_GAI_STRERROR */ #if !HAVE_DECL_FREEADDRINFO -void freeaddrinfo(struct addrinfo *ai) -{ +void freeaddrinfo(struct addrinfo *ai) { struct addrinfo *next; while(ai) { @@ -46,8 +45,7 @@ void freeaddrinfo(struct addrinfo *ai) #endif /* !HAVE_FREEADDRINFO */ #if !HAVE_DECL_GETADDRINFO -static struct addrinfo *malloc_ai(uint16_t port, uint32_t addr) -{ +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)); @@ -62,8 +60,7 @@ static struct addrinfo *malloc_ai(uint16_t port, uint32_t addr) return ai; } -int getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) -{ +int getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) { struct addrinfo *prev = NULL; struct hostent *hp; struct in_addr in = {0};