summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEyal Birger <eyal.birger@gmail.com>2019-04-07 17:04:06 +0300
committerThomas Haller <thaller@redhat.com>2019-09-01 14:24:52 +0200
commit4b9370c6c994659360e5b14ef80f6afec75422f8 (patch)
treedd9aea16f3c2aebdd8bbfef03c46d4905a4c6c1e
parentf3d5c44d21243d5eb59bfc2878d4977df2fd1369 (diff)
downloadlibnl-4b9370c6c994659360e5b14ef80f6afec75422f8.tar.gz
doc/route: fix example code comments
Signed-off-by: Eyal Birger <eyal.birger@gmail.com>
-rw-r--r--doc/route.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/route.txt b/doc/route.txt
index fece9179..6a0dbb9d 100644
--- a/doc/route.txt
+++ b/doc/route.txt
@@ -949,7 +949,7 @@ extern uint8_t rtnl_link_ipip_get_pmtudisc(struct rtnl_link *link);
struct rtnl_link *link
struct in_addr addr
-/* allocate new link object of type vxlan */
+/* allocate new link object of type ipip */
if(!(link = rtnl_link_ipip_alloc()))
/* error */
@@ -1027,7 +1027,7 @@ extern uint8_t rtnl_link_ipgre_get_pmtudisc(struct rtnl_link *link);
struct rtnl_link *link
struct in_addr addr
-/* allocate new link object of type vxlan */
+/* allocate new link object of type ipgre */
if(!(link = rtnl_link_ipgre_alloc()))
/* error */
@@ -1105,7 +1105,7 @@ extern uint8_t rtnl_link_sit_get_pmtudisc(struct rtnl_link *link);
struct rtnl_link *link
struct in_addr addr
-/* allocate new link object of type vxlan */
+/* allocate new link object of type sit */
if(!(link = rtnl_link_sit_alloc()))
/* error */
@@ -1169,7 +1169,7 @@ extern uint32_t rtnl_link_ipvti_get_remote(struct rtnl_link *link);
struct rtnl_link *link
struct in_addr addr
-/* allocate new link object of type vxlan */
+/* allocate new link object of type ipvti */
if(!(link = rtnl_link_ipvti_alloc()))
/* error */