2 * copyright (c) 2011 Emil Mikulic.
4 * addr.h: compound IPv4/IPv6 address
5 * (because struct sockaddr_storage stores too much)
7 * You may use, modify and redistribute this file under the terms of the
8 * GNU General Public License version 2. (see COPYING.GPL)
10 #ifndef __DARKSTAT_ADDR_H
11 #define __DARKSTAT_ADDR_H
13 #include <arpa/inet.h>
20 enum { IPv4
= 4, IPv6
= 6 } family
;
23 int addr_equal(const struct addr
* const a
, const struct addr
* const b
);
24 const char *addr_to_str(const struct addr
* const a
);
25 void addr_mask(struct addr
*a
, const struct addr
* const mask
);
26 int addr_inside(const struct addr
* const a
,
27 const struct addr
* const net
, const struct addr
* const mask
);
29 /* Returns 0 on success, gai_strerror() code otherwise. */
30 int str_to_addr(const char *s
, struct addr
*a
);
33 /* vim:set ts=3 sw=3 tw=78 et: */