From a0762910a62085d875b5bf5e1494c4fdde6f603f Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 20 Oct 1998 15:13:18 +0000 Subject: Added pointer to network to RTE. The complications with passing NET separately aren't worth 4 bytes per RTE. rte_discard and rte_dump don't need net * as parameter. --- nest/route.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'nest/route.h') diff --git a/nest/route.h b/nest/route.h index 39c6ef7..d3a1304 100644 --- a/nest/route.h +++ b/nest/route.h @@ -85,7 +85,8 @@ typedef struct network { typedef struct rte { struct rte *next; - struct rtattr *attrs; + net *net; /* Network this RTE belongs to */ + struct rtattr *attrs; /* Attributes of this route */ byte flags; /* Flags (REF_...) */ byte pflags; /* Protocol-specific flags */ word pref; /* Route preference */ @@ -125,8 +126,8 @@ net *net_get(rtable *tab, unsigned tos, ip_addr addr, unsigned len); rte *rte_find(net *net, struct proto *p); rte *rte_get_temp(struct rtattr *); void rte_update(net *net, struct proto *p, rte *new); -void rte_discard(net *net, rte *old); -void rte_dump(net *, rte *); +void rte_discard(rte *old); +void rte_dump(rte *); void rt_dump(rtable *); void rt_dump_all(void); void rt_feed_baby(struct proto *p); -- cgit v1.2.3