diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-12-07 16:01:47 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2016-12-09 17:36:25 +0100 |
commit | f6eacff4386610eea9fe67ceba7e50f8d87fad4a (patch) | |
tree | 2b9b8a087a17a330b6a9bdcdb9f034ed62ae191b /ripd/ripd.h | |
parent | ospfd, ospf6d: add qobj registrations (diff) | |
download | frr-f6eacff4386610eea9fe67ceba7e50f8d87fad4a.tar.xz frr-f6eacff4386610eea9fe67ceba7e50f8d87fad4a.zip |
ripd: add qobj registrations
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ripd/ripd.h')
-rw-r--r-- | ripd/ripd.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ripd/ripd.h b/ripd/ripd.h index cd4d560af..68b3d1fc6 100644 --- a/ripd/ripd.h +++ b/ripd/ripd.h @@ -22,6 +22,7 @@ #ifndef _ZEBRA_RIP_H #define _ZEBRA_RIP_H +#include "qobj.h" #include "rip_memory.h" /* RIP version number. */ @@ -156,7 +157,10 @@ struct rip int metric_config; u_int32_t metric; } route_map[ZEBRA_ROUTE_MAX]; + + QOBJ_FIELDS }; +DECLARE_QOBJ_TYPE(rip) /* RIP routing table entry which belong to rip_packet. */ struct rte |