diff options
author | Maria Matejka <mq@ucw.cz> | 2019-08-26 21:53:56 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2019-08-27 19:14:15 +0200 |
commit | 32a254050d3da57ca6d7627aa606a8dce11907ee (patch) | |
tree | 97db5f460ad848341099c55887e6a65bd50e0fba /nest/protocol.h | |
parent | 5ab3447de18235de566eb5116c0aec24050f5f85 (diff) |
Channel refeed with import table splitting between routes for one prefix
Diffstat (limited to 'nest/protocol.h')
-rw-r--r-- | nest/protocol.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nest/protocol.h b/nest/protocol.h index 17af2e17..c664c1e6 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -537,7 +537,8 @@ struct channel { struct rtable *in_table; /* Internal table for received routes */ struct event *reload_event; /* Event responsible for reloading from in_table */ - struct fib_iterator reload_fit; /* Iterator in in_table used during reloading */ + struct fib_iterator reload_fit; /* FIB iterator in in_table used during reloading */ + struct rte *reload_next_rte; /* Route iterator in in_table used during reloading */ u8 reload_active; /* Iterator reload_fit is linked */ struct rtable *out_table; /* Internal table for exported routes */ |