diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2019-01-04 22:08:10 +0100 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2019-01-18 19:15:41 +0100 |
commit | 29b94d588409af3e00b99bee2a3f7a89caf3d57b (patch) | |
tree | b96cba362581beb10f35afcb37bb91d1e27f9d12 /ripngd/ripngd.h | |
parent | ripngd: move "ripng_enable_if" to the ripng structure (diff) | |
download | frr-29b94d588409af3e00b99bee2a3f7a89caf3d57b.tar.xz frr-29b94d588409af3e00b99bee2a3f7a89caf3d57b.zip |
ripngd: move "ripng_enable_network" to the ripng structure
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'ripngd/ripngd.h')
-rw-r--r-- | ripngd/ripngd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ripngd/ripngd.h b/ripngd/ripngd.h index af2f65eb4..935a9e859 100644 --- a/ripngd/ripngd.h +++ b/ripngd/ripngd.h @@ -111,6 +111,9 @@ struct ripng { /* RIPng enabled interfaces. */ vector enable_if; + /* RIPng enabled networks. */ + struct agg_table *enable_network; + /* RIPng threads. */ struct thread *t_read; struct thread *t_write; |