0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-03 15:41:54 +00:00

Minor fixme

This commit is contained in:
Ondrej Zajicek (work) 2018-02-22 16:33:33 +01:00
parent 1661e00280
commit 321796628f

View 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);