diff options
author | David Ahern <dsahern@gmail.com> | 2018-09-29 09:34:57 -0700 |
---|---|---|
committer | David Ahern <dsahern@gmail.com> | 2018-10-02 18:38:56 -0700 |
commit | b05d9a3d5866219b3c772256dc215bb04e65baa5 (patch) | |
tree | b05242b36098e6deb06c8fc1c0315a882e15ceb3 /include/libnetlink.h | |
parent | ddee16bc966c2e021e2584bf3102e003a9ad093b (diff) |
libnetlink: Convert GETRULE dumps to use rtnl_ruledump_req
Add rtnl_ruledump_req for fib fule dumps using the proper fib_rule_hdr
as the header. Convert existing RTM_GETRULE dumps to use it.
Signed-off-by: David Ahern <dsahern@gmail.com>
Diffstat (limited to 'include/libnetlink.h')
-rw-r--r-- | include/libnetlink.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libnetlink.h b/include/libnetlink.h index 7e9ef640..5f6bbe55 100644 --- a/include/libnetlink.h +++ b/include/libnetlink.h @@ -53,6 +53,8 @@ int rtnl_addrlbldump_req(struct rtnl_handle *rth, int family) __attribute__((warn_unused_result)); int rtnl_routedump_req(struct rtnl_handle *rth, int family) __attribute__((warn_unused_result)); +int rtnl_ruledump_req(struct rtnl_handle *rth, int family) + __attribute__((warn_unused_result)); int rtnl_mdbdump_req(struct rtnl_handle *rth, int family) __attribute__((warn_unused_result)); int rtnl_netconfdump_req(struct rtnl_handle *rth, int family) |