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 | 0c32404fddcf80034f4fd3d76c7cc12fd71b4e25 (patch) | |
tree | f2d9ca1368ca4f5c64f22111cf5d8ef26e2b859d /ripngd/ripngd.h | |
parent | ripngd: move "ripng_enable_network" to the ripng structure (diff) | |
download | frr-0c32404fddcf80034f4fd3d76c7cc12fd71b4e25.tar.xz frr-0c32404fddcf80034f4fd3d76c7cc12fd71b4e25.zip |
ripngd: move "Vripng_passive_interface" 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 935a9e859..95b128f4d 100644 --- a/ripngd/ripngd.h +++ b/ripngd/ripngd.h @@ -114,6 +114,9 @@ struct ripng { /* RIPng enabled networks. */ struct agg_table *enable_network; + /* Vector to store passive-interface name. */ + vector passive_interface; + /* RIPng threads. */ struct thread *t_read; struct thread *t_write; |