]> arthur.barton.de Git - ngircd-alex.git/blob - src/ipaddr/ng_ipaddr.h
make Listen parameter a comma-seperated list of addresses.
[ngircd-alex.git] / src / ipaddr / ng_ipaddr.h
1 /*
2  * Functions for AF_ agnostic ipv4/ipv6 handling.
3  *
4  * (c) 2008 Florian Westphal <fw@strlen.de>, public domain.
5  */
6
7 #ifndef NG_IPADDR_HDR
8 #define NG_IPADDR_HDR
9 #include "portab.h"
10
11 #include <sys/socket.h>
12 #include <netinet/in.h>
13
14 #ifdef HAVE_ARPA_INET_H
15 # include <arpa/inet.h>
16 #else
17 # define PF_INET AF_INET
18 #endif
19
20
21 #ifdef WANT_IPV6
22 #define NG_INET_ADDRSTRLEN      INET6_ADDRSTRLEN
23 #else
24 #define NG_INET_ADDRSTRLEN      16
25 #endif
26
27
28 #ifdef WANT_IPV6
29 typedef union {
30         struct sockaddr sa;
31         struct sockaddr_in sin4;
32         struct sockaddr_in6 sin6;
33 } ng_ipaddr_t;
34 #else
35 /* assume compiler can't deal with typedef struct {... */
36 struct NG_IP_ADDR_DONTUSE {
37         struct sockaddr_in sin4;
38 };
39 typedef struct NG_IP_ADDR_DONTUSE ng_ipaddr_t;
40 #endif
41
42
43 static inline int
44 ng_ipaddr_af(const ng_ipaddr_t *a)
45 {
46 #ifdef WANT_IPV6
47         return a->sa.sa_family;
48 #else
49         assert(a->sin4.sin_family == 0 || a->sin4.sin_family == AF_INET);
50         return a->sin4.sin_family;
51 #endif
52 }
53
54
55 static inline socklen_t
56 ng_ipaddr_salen(const ng_ipaddr_t *a)
57 {
58 #ifdef WANT_IPV6
59         assert(a->sa.sa_family == AF_INET || a->sa.sa_family == AF_INET6);
60         if (a->sa.sa_family == AF_INET6)
61                 return sizeof(a->sin6);
62 #endif
63         assert(a->sin4.sin_family == AF_INET);
64         return sizeof(a->sin4);
65 }
66
67
68 static inline UINT16
69 ng_ipaddr_getport(const ng_ipaddr_t *a)
70 {
71 #ifdef WANT_IPV6
72         int af = a->sa.sa_family;
73
74         assert(af == AF_INET || af == AF_INET6);
75
76         if (af == AF_INET6)
77                 return ntohs(a->sin6.sin6_port);
78 #endif /* WANT_IPV6 */
79         assert(a->sin4.sin_family == AF_INET);
80         return ntohs(a->sin4.sin_port);
81 }
82
83 /*
84  * init a ng_ipaddr_t object.
85  * @param addr: pointer to ng_ipaddr_t to initialize.
86  * @param ip_str: ip address in dotted-decimal (ipv4) or hexadecimal (ipv6) notation
87  * @param port: transport layer port number to use.
88  */
89 GLOBAL bool ng_ipaddr_init PARAMS((ng_ipaddr_t *addr, const char *ip_str, UINT16 port));
90
91 /* set sin4/sin6_port, depending on a->sa_family */
92 GLOBAL void ng_ipaddr_setport PARAMS((ng_ipaddr_t *a, UINT16 port));
93
94 /* return true if a and b have the same IP address. If a and b have different AF, return false. */
95 GLOBAL bool ng_ipaddr_ipequal PARAMS((const ng_ipaddr_t *a, const ng_ipaddr_t *b));
96
97
98 #ifdef WANT_IPV6
99 /* convert struct sockaddr to string, returns pointer to static buffer */
100 GLOBAL const char *ng_ipaddr_tostr PARAMS((const ng_ipaddr_t *addr));
101
102 /* convert struct sockaddr to string. dest must be NG_INET_ADDRSTRLEN bytes long */
103 GLOBAL bool ng_ipaddr_tostr_r PARAMS((const ng_ipaddr_t *addr, char *dest));
104 #else
105 static inline const char *
106 ng_ipaddr_tostr(const ng_ipaddr_t *addr) { return inet_ntoa(addr->sin4.sin_addr); }
107
108 static inline bool
109 ng_ipaddr_tostr_r(const ng_ipaddr_t *addr, char *d)
110 {
111         strlcpy(d, inet_ntoa(addr->sin4.sin_addr), NG_INET_ADDRSTRLEN);
112         return true;
113 }
114 #endif
115 #endif
116
117 /* -eof- */
118