diff options
author | Maria Matejka <mq@ucw.cz> | 2022-10-05 15:17:51 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-10-05 15:17:51 +0200 |
commit | 1e01721525032bf3608aa457cafde58543b8a977 (patch) | |
tree | d73f8020f23615dcda6f4acbb10fdb17e338cb64 /nest | |
parent | 7911148b22a9efb1fd200b23e3c71cb1df3a0620 (diff) | |
parent | dc9351d326b9d2d8bcb7e9a0e5126878c2b02762 (diff) |
Merge commit 'dc9351d3' into HEAD
Diffstat (limited to 'nest')
-rw-r--r-- | nest/protocol.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/nest/protocol.h b/nest/protocol.h index 88bff092..892d1890 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -180,15 +180,12 @@ struct proto { * Routing entry hooks (called only for routes belonging to this protocol): * * rte_recalculate Called at the beginning of the best route selection - * rte_better Compare two rte's and decide which one is better (1=first, 0=second). - * rte_same Compare two rte's and decide whether they are identical (1=yes, 0=no). * rte_mergable Compare two rte's and decide whether they could be merged (1=yes, 0=no). * 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_recalculate)(struct rtable_private *, struct network *, struct rte *, struct rte *, struct rte *); - int (*rte_better)(struct rte *, struct rte *); int (*rte_mergable)(struct rte *, struct rte *); void (*rte_insert)(struct network *, struct rte *); void (*rte_remove)(struct network *, struct rte *); |