Small fixes so tinc compiles out of the box on SunOS 5.8
[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 "config.h"
13
14 #include <stdio.h>
15 #include <sys/types.h>
16 #include <sys/socket.h>
17 #include <netinet/in.h>
18 #include <arpa/inet.h>
19 #include <netdb.h>
20 #include <string.h>
21
22 #include <system.h>
23
24 #include "fake-getnameinfo.h"
25
26 #ifndef HAVE_GETNAMEINFO
27
28 int getnameinfo(const struct sockaddr *sa, size_t salen, char *host, 
29                 size_t hostlen, char *serv, size_t servlen, int flags)
30 {
31         struct sockaddr_in *sin = (struct sockaddr_in *)sa;
32         struct hostent *hp;
33         char tmpserv[16];
34
35         if (serv) {
36                 snprintf(tmpserv, sizeof(tmpserv), "%d", ntohs(sin->sin_port));
37                 if (strlen(tmpserv) >= servlen)
38                         return EAI_MEMORY;
39                 else
40                         strcpy(serv, tmpserv);
41         }
42
43         if (host) {
44                 if (flags & NI_NUMERICHOST) {
45                         if (strlen(inet_ntoa(sin->sin_addr)) >= hostlen)
46                                 return EAI_MEMORY;
47
48                         strcpy(host, inet_ntoa(sin->sin_addr));
49                         return 0;
50                 } else {
51                         hp = gethostbyaddr((char *)&sin->sin_addr, 
52                                 sizeof(struct in_addr), AF_INET);
53                         if (hp == NULL)
54                                 return EAI_NODATA;
55                         
56                         if (strlen(hp->h_name) >= hostlen)
57                                 return EAI_MEMORY;
58
59                         strcpy(host, hp->h_name);
60                         return 0;
61                 }
62         }
63         return 0;
64 }
65 #endif /* !HAVE_GETNAMEINFO */