diff options
author | Jan Moskyto Matejka <mq@ucw.cz> | 2015-12-11 15:35:37 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2015-12-19 15:57:09 +0100 |
commit | d7661fbe9dea980c61daa01a11a9aa59fa7be426 (patch) | |
tree | ba6c715e5b4cb1ba638dc5b75e14008a0e6f5e84 /lib/net.c | |
parent | 9b136840d90cce887cd139054c3f0a7d8b9f57d2 (diff) |
Removed BITS_PER_IP_ADDRESS, MAX_PREFIX_LENGTH, BIRD_AF
Explicit setting of AF_INET(6|) in IP socket creation. BFD set to listen
on v6, without setting the V6ONLY flag to catch both v4 and v6 traffic.
Squashing and minor changes by Ondrej Santiago Zajicek
Diffstat (limited to 'lib/net.c')
-rw-r--r-- | lib/net.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -3,6 +3,7 @@ #include "lib/ip.h" #include "lib/net.h" + const u16 net_addr_length[] = { [NET_IP4] = sizeof(net_addr_ip4), [NET_IP6] = sizeof(net_addr_ip6), @@ -10,6 +11,14 @@ const u16 net_addr_length[] = { [NET_VPN6] = sizeof(net_addr_vpn6) }; +const u8 net_max_prefix_length[] = { + [NET_IP4] = IP4_MAX_PREFIX_LENGTH, + [NET_IP6] = IP6_MAX_PREFIX_LENGTH, + [NET_VPN4] = IP4_MAX_PREFIX_LENGTH, + [NET_VPN6] = IP4_MAX_PREFIX_LENGTH +}; + + int net_format(const net_addr *N, char *buf, int buflen) { @@ -31,7 +40,6 @@ net_format(const net_addr *N, char *buf, int buflen) return 0; } - ip_addr net_pxmask(const net_addr *a) { |