diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2018-05-09 06:35:02 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2018-10-27 20:16:12 +0200 |
commit | c1b7e58eda4cbe7a6fef67b5918781a040c0f234 (patch) | |
tree | 73ddcbd21c4f040a6f67c4c3fa834c5eb3e16efe /ripd/ripd.h | |
parent | ripd: retrofit the 'version' command to the new northbound model (diff) | |
download | frr-c1b7e58eda4cbe7a6fef67b5918781a040c0f234.tar.xz frr-c1b7e58eda4cbe7a6fef67b5918781a040c0f234.zip |
ripd: no need to use qobj anymore to keep track of "router rip"
Now that "router rip" and all underlying commands were converted to the
new northbound model, there's no need to use the qobj infrastructure to
keep track of the 'rip' global variable anymore.
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'ripd/ripd.h')
-rw-r--r-- | ripd/ripd.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ripd/ripd.h b/ripd/ripd.h index c8bc68c09..e355e1e61 100644 --- a/ripd/ripd.h +++ b/ripd/ripd.h @@ -21,7 +21,6 @@ #ifndef _ZEBRA_RIP_H #define _ZEBRA_RIP_H -#include "qobj.h" #include "hook.h" #include "nexthop.h" #include "rip_memory.h" @@ -151,10 +150,7 @@ struct rip { bool metric_config; uint8_t metric; } route_map[ZEBRA_ROUTE_MAX]; - - QOBJ_FIELDS }; -DECLARE_QOBJ_TYPE(rip) /* RIP routing table entry which belong to rip_packet. */ struct rte { |