tinc-gui: Reformat codebase according to PEP8
[tinc] / src / fake-getnameinfo.c
1 /*
2  * fake library for ssh
3  *
4  * This file includes getnameinfo().
5  * These funtions are defined in rfc2133.
6  *
7  * But these functions are not implemented correctly. The minimum subset
8  * is implemented for ssh use only. For exapmle, this routine assumes
9  * that ai_family is AF_INET. Don't use it for another purpose.
10  */
11
12 #include "system.h"
13
14 #include "fake-getnameinfo.h"
15 #include "fake-getaddrinfo.h"
16
17 #if !HAVE_DECL_GETNAMEINFO
18
19 int getnameinfo(const struct sockaddr *sa, size_t salen, char *host, size_t hostlen, char *serv, size_t servlen, int flags) {
20         struct sockaddr_in *sin = (struct sockaddr_in *)sa;
21         struct hostent *hp;
22         int len;
23
24         if(sa->sa_family != AF_INET)
25                 return EAI_FAMILY;
26
27         if(serv && servlen) {
28                 len = snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
29                 if(len < 0 || len >= servlen)
30                         return EAI_MEMORY;
31         }
32
33         if(!host || !hostlen)
34                 return 0;
35
36         if(flags & NI_NUMERICHOST) {
37                 len = snprintf(host, hostlen, "%s", inet_ntoa(sin->sin_addr));
38                 if(len < 0 || len >= hostlen)
39                         return EAI_MEMORY;
40                 return 0;
41         }
42
43         hp = gethostbyaddr((char *)&sin->sin_addr, sizeof(struct in_addr), AF_INET);
44
45         if(!hp || !hp->h_name || !hp->h_name[0])
46                 return EAI_NODATA;
47
48         len = snprintf(host, hostlen, "%s", hp->h_name);
49         if(len < 0 || len >= hostlen)
50                 return EAI_MEMORY;
51
52         return 0;
53 }
54 #endif /* !HAVE_GETNAMEINFO */