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 | ca04690261bda71898ce34ee719df4f5161ea145 (patch) | |
tree | 22fa58e582a091d470446533ac228d653145ea65 /ripd/ripd.h | |
parent | ripd: simplify cleaning up of routing instance (diff) | |
download | frr-ca04690261bda71898ce34ee719df4f5161ea145.tar.xz frr-ca04690261bda71898ce34ee719df4f5161ea145.zip |
ripd: move "rip_enable_interface" to the rip structure
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'ripd/ripd.h')
-rw-r--r-- | ripd/ripd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ripd/ripd.h b/ripd/ripd.h index 7b8fe3a90..a1edbed5e 100644 --- a/ripd/ripd.h +++ b/ripd/ripd.h @@ -144,6 +144,9 @@ struct rip { /* Are we in passive-interface default mode? */ bool passive_default; + /* RIP enabled interfaces. */ + vector enable_interface; + /* For redistribute route map. */ struct { char *name; |