diff options
author | Susant Sahani <susant@redhat.com> | 2014-05-10 04:48:12 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2014-06-16 14:59:16 (GMT) |
commit | 11f9cc0914aef697c1f49bca7353117cb65fd318 (patch) | |
tree | 12134513d469f6e49883c49ca62d182c97481d96 /include | |
parent | cfc57ce3596cfe9dacf01219f118534fb2686137 (diff) | |
download | libnl-11f9cc0914aef697c1f49bca7353117cb65fd318.zip libnl-11f9cc0914aef697c1f49bca7353117cb65fd318.tar.gz libnl-11f9cc0914aef697c1f49bca7353117cb65fd318.tar.bz2 |
ip6tnl: introduce ip6 tunnel support
This patch adds support for ip6 tunnel that works with
the ip6_tunnel kernel module.
Signed-off-by: Susant Sahani <susant@redhat.com>
Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 1 | ||||
-rw-r--r-- | include/netlink/route/link/ip6tnl.h | 56 |
2 files changed, 57 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 1db0597..4c66e8c 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -53,6 +53,7 @@ nobase_libnlinclude_HEADERS = \ netlink/route/link/vlan.h \ netlink/route/link/vxlan.h \ netlink/route/link/veth.h \ + netlink/route/link/ip6tnl.h netlink/route/link/ipgre.h \ netlink/route/link/ipip.h \ netlink/route/link/ipvti.h \ diff --git a/include/netlink/route/link/ip6tnl.h b/include/netlink/route/link/ip6tnl.h new file mode 100644 index 0000000..7e0c295 --- /dev/null +++ b/include/netlink/route/link/ip6tnl.h @@ -0,0 +1,56 @@ +/* + * netlink/route/link/ip6tnl.h IP6TNL interface + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation version 2.1 + * of the License. + * + * Copyright (c) 2014 Susant Sahani <susant@redhat.com> + */ + +#ifndef NETLINK_LINK_IP6TNL_H_ +#define NETLINK_LINK_IP6TNL_H_ + +#include <netlink/netlink.h> +#include <netlink/route/link.h> + +#ifdef __cplusplus +extern "C" { +#endif + + extern struct rtnl_link *rtnl_link_ip6_tnl_alloc(void); + extern int rtnl_link_ip6_tnl_add(struct nl_sock *sk, const char *name); + + extern int rtnl_link_ip6_tnl_set_link(struct rtnl_link *link, uint32_t index); + extern uint32_t rtnl_link_ip6_tnl_get_link(struct rtnl_link *link); + + extern int rtnl_link_ip6_tnl_set_local(struct rtnl_link *link, struct in6_addr *); + extern int rtnl_link_ip6_tnl_get_local(struct rtnl_link *link, struct in6_addr *addr); + + extern int rtnl_link_ip6_tnl_set_remote(struct rtnl_link *link, struct in6_addr *); + extern int rtnl_link_ip6_tnl_get_remote(struct rtnl_link *link, struct in6_addr *); + + extern int rtnl_link_ip6_tnl_set_ttl(struct rtnl_link *link, uint8_t ttl); + extern uint8_t rtnl_link_ip6_tnl_get_ttl(struct rtnl_link *link); + + extern int rtnl_link_ip6_tnl_set_tos(struct rtnl_link *link, uint8_t tos); + extern uint8_t rtnl_link_ip6_tnl_get_tos(struct rtnl_link *link); + + extern int rtnl_link_ip6_tnl_set_encaplimit(struct rtnl_link *link, uint8_t encap_limit); + extern uint8_t rtnl_link_ip6_tnl_get_encaplimit(struct rtnl_link *link); + + extern int rtnl_link_ip6_tnl_set_flags(struct rtnl_link *link, uint32_t flags); + extern uint32_t rtnl_link_ip6_tnl_get_flags(struct rtnl_link *link); + + extern uint32_t rtnl_link_ip6_tnl_get_flowinfo(struct rtnl_link *link); + extern int rtnl_link_ip6_tnl_set_flowinfo(struct rtnl_link *link, uint32_t flowinfo); + + extern int rtnl_link_ip6_tnl_set_proto(struct rtnl_link *link, uint8_t proto); + extern uint8_t rtnl_link_ip6_tnl_get_proto(struct rtnl_link *link); + +#ifdef _cplusplus +} +#endif + +#endif |