From 321796628fd17ed77129157c7064b7e60a9f0abb Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Thu, 22 Feb 2018 16:33:33 +0100 Subject: [PATCH] Minor fixme --- nest/route.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/nest/route.h b/nest/route.h index 7a4b1672..d47645f8 100644 --- a/nest/route.h +++ b/nest/route.h @@ -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);