From 9e0e485e50ea74c4f1c5cb65bdfe6ce819c2cee2 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 5 Apr 1999 20:17:59 +0000 Subject: Added some new protocol hooks (look at the comments for better explanation): make_tmp_attrs Convert inline attributes to ea_list store_tmp_attrs Convert ea_list to inline attributes import_control Pre-import decisions --- nest/protocol.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'nest/protocol.h') diff --git a/nest/protocol.h b/nest/protocol.h index e513779..c203f25 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -92,9 +92,34 @@ struct proto { unsigned core_state; /* Core state machine (see below) */ unsigned core_goal; /* State we want to reach (see below) */ + /* + * General protocol hooks: + * + * if_notify Notify protocol about interface state changes. + * rt_notify Notify protocol about routing table updates. + * neigh_notify Notify protocol about neighbor cache events. + * make_tmp_attrs Construct ea_list from private attrs stored in rte. + * store_tmp_attrs Store private attrs back to the rte. + * import_control Called as the first step of the route importing process. + * It can construct a new rte, add private attributes and + * decide whether the route shall be imported: 1=yes, -1=no, + * 0=process it through the import filter set by the user. + */ + void (*if_notify)(struct proto *, unsigned flags, struct iface *new, struct iface *old); void (*rt_notify)(struct proto *, struct network *net, struct rte *new, struct rte *old); void (*neigh_notify)(struct neighbor *neigh); + struct ea_list *(*make_tmp_attrs)(struct rte *rt, struct linpool *pool); + void (*store_tmp_attrs)(struct rte *rt, struct ea_list *attrs); + int (*import_control)(struct proto *, struct rte **rt, struct ea_list **attrs, struct linpool *pool); + + /* + * Routing entry hooks (called only for rte's belonging to this protocol): + * + * rte_better Compare two rte's and decide which one is better (1=first, 0=second). + * rte_insert Called whenever a rte is inserted to a routing table. + * rte_remove Called whenever a rte is removed from the routing table. + */ int (*rte_better)(struct rte *, struct rte *); void (*rte_insert)(struct network *, struct rte *); -- cgit v1.2.3