summaryrefslogtreecommitdiff
path: root/lib/net.h
diff options
context:
space:
mode:
authorJan Moskyto Matejka <mq@ucw.cz>2017-03-13 13:50:32 +0100
committerJan Moskyto Matejka <mq@ucw.cz>2017-03-13 13:51:20 +0100
commit8c9986d310c58b26c000375be00be0deb9c2e360 (patch)
tree9e3dba54bc82bb2bb9e0b6a25591eb471b107550 /lib/net.h
parent54334b5667158d4b0af55201f327faeb80c05e0e (diff)
Filters: VPN Route Distinguishers, Prefix Type, Docs Update
Diffstat (limited to 'lib/net.h')
-rw-r--r--lib/net.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/net.h b/lib/net.h
index 7144bcb9..16a18479 100644
--- a/lib/net.h
+++ b/lib/net.h
@@ -230,6 +230,9 @@ static inline int net_is_ip(const net_addr *a)
static inline int net_is_roa(const net_addr *a)
{ return (a->type == NET_ROA4) || (a->type == NET_ROA6); }
+static inline int net_is_vpn(const net_addr *a)
+{ return (a->type == NET_VPN4) || (a->type == NET_VPN6); }
+
static inline ip4_addr net4_prefix(const net_addr *a)
{ return ((net_addr_ip4 *) a)->prefix; }
@@ -278,6 +281,18 @@ static inline uint net_pxlen(const net_addr *a)
ip_addr net_pxmask(const net_addr *a);
+static inline u64 net_rd(const net_addr *a)
+{
+ switch (a->type)
+ {
+ case NET_VPN4:
+ return ((net_addr_vpn4 *)a)->rd;
+ case NET_VPN6:
+ return ((net_addr_vpn6 *)a)->rd;
+ }
+ return 0;
+}
+
static inline int net_equal(const net_addr *a, const net_addr *b)
{ return (a->length == b->length) && !memcmp(a, b, a->length); }
@@ -471,7 +486,7 @@ void net_normalize(net_addr *N);
int net_classify(const net_addr *N);
int net_format(const net_addr *N, char *buf, int buflen);
-
+int rd_format(const u64 rd, char *buf, int buflen);
int ipa_in_netX(const ip_addr A, const net_addr *N);
int net_in_netX(const net_addr *A, const net_addr *N);