Add ProcessPriority option.
[tinc] / lib / 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 #ifndef HAVE_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 {
21         struct sockaddr_in *sin = (struct sockaddr_in *)sa;
22         struct hostent *hp;
23         int len;
24
25         if(sa->sa_family != AF_INET)
26                 return EAI_FAMILY;
27
28         if(serv && servlen) {
29                 len = snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
30                 if(len < 0 || len >= servlen)
31                         return EAI_MEMORY;
32         }
33
34         if(!host || !hostlen)
35                 return 0;
36
37         if(flags & NI_NUMERICHOST) {
38                 len = snprintf(host, hostlen, "%s", inet_ntoa(sin->sin_addr));
39                 if(len < 0 || len >= hostlen)
40                         return EAI_MEMORY;
41                 return 0;
42         }
43
44         hp = gethostbyaddr((char *)&sin->sin_addr, sizeof(struct in_addr), AF_INET);
45         
46         if(!hp || !hp->h_name || !hp->h_name[0])
47                 return EAI_NODATA;
48         
49         len = snprintf(host, hostlen, "%s", hp->h_name);
50         if(len < 0 || len >= hostlen)
51                 return EAI_MEMORY;
52
53         return 0;
54 }
55 #endif /* !HAVE_GETNAMEINFO */