From f8d44b01df5d93681e116ccbff39cc4618632825 Mon Sep 17 00:00:00 2001 From: Jan Moskyto Matejka Date: Mon, 15 May 2017 12:10:51 +0200 Subject: Nest: split route show into separate file --- nest/protocol.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'nest/protocol.h') diff --git a/nest/protocol.h b/nest/protocol.h index f0958678..eed0a291 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -270,6 +270,14 @@ proto_get_router_id(struct proto_config *pc) return pc->router_id ? pc->router_id : pc->global->router_id; } +static inline struct ea_list * +rte_make_tmp_attrs(struct rte *rt, struct linpool *pool) +{ + struct ea_list *(*mta)(struct rte *rt, struct linpool *pool); + mta = rt->attrs->src->proto->make_tmp_attrs; + return mta ? mta(rt, pool) : NULL; +} + /* Moved from route.h to avoid dependency conflicts */ static inline void rte_update(struct proto *p, const net_addr *n, rte *new) { rte_update2(p->main_channel, n, new, p->main_source); } -- cgit v1.2.3