diff options
author | Thomas Winter <Thomas.Winter@alliedtelesis.co.nz> | 2018-06-08 04:18:40 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2022-03-11 23:05:37 (GMT) |
commit | 2995710d3f13a95701e54fda33ce80eb5f811f8f (patch) | |
tree | 84853fecab6f0b1611c61f6082fd0c960216ac98 /doc | |
parent | d9dc6c20a36077757f1fa29047c0722382098cd4 (diff) | |
download | libnl-2995710d3f13a95701e54fda33ce80eb5f811f8f.zip libnl-2995710d3f13a95701e54fda33ce80eb5f811f8f.tar.gz libnl-2995710d3f13a95701e54fda33ce80eb5f811f8f.tar.bz2 |
ipgre: Add fwmark API
This is a new option that was added in Linux v4.12.
Signed-off-by: Thomas Winter <Thomas.Winter@alliedtelesis.co.nz>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/route.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/route.txt b/doc/route.txt index 01e0a7b..d303978 100644 --- a/doc/route.txt +++ b/doc/route.txt @@ -1019,6 +1019,9 @@ extern uint8_t rtnl_link_ipgre_get_tos(struct rtnl_link *link); extern int rtnl_link_ipgre_set_pmtudisc(struct rtnl_link *link, uint8_t pmtudisc); extern uint8_t rtnl_link_ipgre_get_pmtudisc(struct rtnl_link *link); +extern int rtnl_link_ipgre_set_fwmark(struct rtnl_link *link, uint32_t fwmark); +extern int rtnl_link_ipgre_get_fwmark(struct rtnl_link *link, uint32_t *fwmark); + ----- .Example: Add a ipgre tunnel device |