summaryrefslogtreecommitdiffstats
path: root/include/netlink
diff options
context:
space:
mode:
authorSusant Sahani <susant@redhat.com>2014-05-06 05:41:31 (GMT)
committerThomas Haller <thaller@redhat.com>2014-05-06 09:57:40 (GMT)
commitadb9f5d8fa605a458dbd97411564fae2584af2f7 (patch)
tree5393765cf8d6934c68eb1ce7e51d598cb28bdfd4 /include/netlink
parent737d5f024730291efea38ca837a1fd9eae43a5ff (diff)
downloadlibnl-adb9f5d8fa605a458dbd97411564fae2584af2f7.zip
libnl-adb9f5d8fa605a458dbd97411564fae2584af2f7.tar.gz
libnl-adb9f5d8fa605a458dbd97411564fae2584af2f7.tar.bz2
ipgre: rename new public API to avoid confusion
Signed-off-by: Susant Sahani <susant@redhat.com> Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'include/netlink')
-rw-r--r--include/netlink/route/link/ipgre.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/netlink/route/link/ipgre.h b/include/netlink/route/link/ipgre.h
index 6415400..5a0a295 100644
--- a/include/netlink/route/link/ipgre.h
+++ b/include/netlink/route/link/ipgre.h
@@ -1,5 +1,5 @@
/*
- * netlink/route/link/ip_gre.h IPIP interface
+ * netlink/route/link/ip_gre.h IPGRE interface
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -26,31 +26,31 @@ extern "C" {
extern uint32_t rtnl_link_ipgre_get_link(struct rtnl_link *link);
extern int rtnl_link_ipgre_set_iflags(struct rtnl_link *link, uint16_t iflags);
- extern uint16_t rtnl_link_get_iflags(struct rtnl_link *link);
+ extern uint16_t rtnl_link_ipgre_get_iflags(struct rtnl_link *link);
extern int rtnl_link_ipgre_set_oflags(struct rtnl_link *link, uint16_t oflags);
- extern uint16_t rtnl_link_get_oflags(struct rtnl_link *link);
+ extern uint16_t rtnl_link_ipgre_get_oflags(struct rtnl_link *link);
extern int rtnl_link_ipgre_set_ikey(struct rtnl_link *link, uint32_t ikey);
- extern uint32_t rtnl_link_get_ikey(struct rtnl_link *link);
+ extern uint32_t rtnl_link_ipgre_get_ikey(struct rtnl_link *link);
extern int rtnl_link_ipgre_set_okey(struct rtnl_link *link, uint32_t okey);
- extern uint32_t rtnl_link_get_okey(struct rtnl_link *link);
+ extern uint32_t rtnl_link_ipgre_get_okey(struct rtnl_link *link);
extern int rtnl_link_ipgre_set_local(struct rtnl_link *link, uint32_t addr);
- extern uint32_t rtnl_link_get_local(struct rtnl_link *link);
+ extern uint32_t rtnl_link_ipgre_get_local(struct rtnl_link *link);
extern int rtnl_link_ipgre_set_remote(struct rtnl_link *link, uint32_t addr);
- extern uint32_t rtnl_link_get_remote(struct rtnl_link *link);
+ extern uint32_t rtnl_link_ipgre_get_remote(struct rtnl_link *link);
extern int rtnl_link_ipgre_set_ttl(struct rtnl_link *link, uint8_t ttl);
- extern uint8_t rtnl_link_get_ttl(struct rtnl_link *link);
+ extern uint8_t rtnl_link_ipgre_get_ttl(struct rtnl_link *link);
extern int rtnl_link_ipgre_set_tos(struct rtnl_link *link, uint8_t tos);
- extern uint8_t rtnl_link_get_tos(struct rtnl_link *link);
+ 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_get_pmtudisc(struct rtnl_link *link);
+ extern uint8_t rtnl_link_ipgre_get_pmtudisc(struct rtnl_link *link);
#ifdef __cplusplus
}