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 | 1205fdc482e8c2977fbbe491824a718d22624de1 (patch) | |
tree | 60ccc6372714b0a7ec439503b135bde302f554b4 /ripd/ripd.h | |
parent | ripd: move "rip_enable_interface" to the rip structure (diff) | |
download | frr-1205fdc482e8c2977fbbe491824a718d22624de1.tar.xz frr-1205fdc482e8c2977fbbe491824a718d22624de1.zip |
ripd: move "rip_enable_network" 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 a1edbed5e..1f3b41e5f 100644 --- a/ripd/ripd.h +++ b/ripd/ripd.h @@ -147,6 +147,9 @@ struct rip { /* RIP enabled interfaces. */ vector enable_interface; + /* RIP enabled networks. */ + struct route_table *enable_network; + /* For redistribute route map. */ struct { char *name; |