]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Minor fixme
authorOndrej Zajicek (work) <santiago@crfreenet.org>
Thu, 22 Feb 2018 15:33:33 +0000 (16:33 +0100)
committerOndrej Zajicek (work) <santiago@crfreenet.org>
Thu, 22 Feb 2018 15:33:33 +0000 (16:33 +0100)
nest/route.h

index 7a4b1672fa20de34644992966426c3f85f2c29da..d47645f8ee1be45aa85dc9cb12363979b07687b6 100644 (file)
@@ -280,13 +280,6 @@ static inline int rte_is_filtered(rte *r) { return !!(r->flags & REF_FILTERED);
 #define RIC_REJECT     -1              /* Rejected by protocol */
 #define RIC_DROP       -2              /* Silently dropped by protocol */
 
-#define RTE_MGRP_SET(iface,m)  ((m) |= (1 << if_get_vifi((iface))))
-#define RTE_MGRP_CLR(iface,m)  ((m) &= ~(1 << if_get_vifi((iface))))
-#define RTE_MGRP_ISSET(iface,m)        ((m) & (1 << if_get_vifi((iface))))
-#define RTE_MGRP_ZERO(m)       ((m) = 0)
-#define RTE_MGRP_COPY(src,dst) ((dst) = (src))
-#define RTE_MGRP_SAME(m1,m2)   ((m1) == (m2))
-
 struct config;
 
 void rt_init(void);