summaryrefslogtreecommitdiff
path: root/src/systemd
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2015-10-09 18:52:35 +0200
committerTom Gundersen <teg@jklm.no>2015-10-11 15:04:16 +0200
commitad70f78936e76ed30aaadda8fdf9ad934f438ef0 (patch)
treee4aa9060c403563525dea866c4e99bbec025a16a /src/systemd
parent129dc1b489d924d28956b09a06f03d7607beb8ad (diff)
downloadsystemd-ad70f78936e76ed30aaadda8fdf9ad934f438ef0.tar.gz
sd-netlink: rtnl - add route_get_{scope,tos,table,protocol}()
Diffstat (limited to 'src/systemd')
-rw-r--r--src/systemd/sd-netlink.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/systemd/sd-netlink.h b/src/systemd/sd-netlink.h
index e09b8c8e2d..8e1b06ee9a 100644
--- a/src/systemd/sd-netlink.h
+++ b/src/systemd/sd-netlink.h
@@ -137,6 +137,10 @@ int sd_rtnl_message_route_set_dst_prefixlen(sd_netlink_message *m, unsigned char
int sd_rtnl_message_route_set_src_prefixlen(sd_netlink_message *m, unsigned char prefixlen);
int sd_rtnl_message_route_set_scope(sd_netlink_message *m, unsigned char scope);
int sd_rtnl_message_route_get_family(sd_netlink_message *m, int *family);
+int sd_rtnl_message_route_get_protocol(sd_netlink_message *m, unsigned char *protocol);
+int sd_rtnl_message_route_get_scope(sd_netlink_message *m, unsigned char *scope);
+int sd_rtnl_message_route_get_tos(sd_netlink_message *m, unsigned char *tos);
+int sd_rtnl_message_route_get_table(sd_netlink_message *m, unsigned char *table);
int sd_rtnl_message_route_get_dst_prefixlen(sd_netlink_message *m, unsigned char *dst_len);
int sd_rtnl_message_route_get_src_prefixlen(sd_netlink_message *m, unsigned char *src_len);