1 /* 2 * netlink/route/link/ipvti.h IPVTI interface 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation version 2.1 7 * of the License. 8 * 9 * Copyright (c) 2014 Susant Sahani <susant@redhat.com> 10 */ 11 12 #ifndef NETLINK_LINK_IPVTI_H_ 13 #define NETLINK_LINK_IPVTI_H_ 14 15 #include <netlink/netlink.h> 16 #include <netlink/route/link.h> 17 18 #ifdef __cplusplus 19 extern "C" { 20 #endif 21 extern struct rtnl_link *rtnl_link_ipvti_alloc(void); 22 extern int rtnl_link_ipvti_add(struct nl_sock *sk, const char *name); 23 24 extern int rtnl_link_ipvti_set_link(struct rtnl_link *link, uint32_t index); 25 extern uint32_t rtnl_link_ipvti_get_link(struct rtnl_link *link); 26 27 extern int rtnl_link_ipvti_set_ikey(struct rtnl_link *link, uint32_t ikey); 28 extern uint32_t rtnl_link_get_ikey(struct rtnl_link *link); 29 30 extern int rtnl_link_ipvti_set_okey(struct rtnl_link *link, uint32_t okey); 31 extern uint32_t rtnl_link_get_okey(struct rtnl_link *link); 32 33 extern int rtnl_link_ipvti_set_local(struct rtnl_link *link, uint32_t addr); 34 extern uint32_t rtnl_link_get_local(struct rtnl_link *link); 35 36 extern int rtnl_link_ipvti_set_remote(struct rtnl_link *link, uint32_t addr); 37 extern uint32_t rtnl_link_get_remote(struct rtnl_link *link); 38 39 #ifdef __cplusplus 40 } 41 #endif 42 43 #endif 44