. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Server IP : 104.21.41.133 / Your IP :
3.141.31.26 [
Web Server : LiteSpeed System : Linux altar63.supremepanel63.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : abranoticias ( 1103) PHP Version : 8.0.30 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/usr/include/libnl3/netlink/route/link/ |
Upload File : |
/* SPDX-License-Identifier: LGPL-2.1-only */ /* * Copyright (c) 2013 Yasunobu Chiba <yasu@dsl.gr.jp> */ #ifndef NETLINK_LINK_VXLAN_H_ #define NETLINK_LINK_VXLAN_H_ #include <netlink/netlink.h> #include <netlink/route/link.h> #ifdef __cplusplus extern "C" { #endif struct ifla_vxlan_port_range; #define VXLAN_ID_MAX 16777215 enum { RTNL_LINK_VXLAN_F_GBP = 1 << 0, #define RTNL_LINK_VXLAN_F_GBP RTNL_LINK_VXLAN_F_GBP RTNL_LINK_VXLAN_F_GPE = 1 << 1, #define RTNL_LINK_VXLAN_F_GPE RTNL_LINK_VXLAN_F_GPE RTNL_LINK_VXLAN_F_REMCSUM_NOPARTIAL = 1 << 2, #define RTNL_LINK_VXLAN_F_REMCSUM_NOPARTIAL RTNL_LINK_VXLAN_F_REMCSUM_NOPARTIAL }; extern struct rtnl_link *rtnl_link_vxlan_alloc(void); extern int rtnl_link_is_vxlan(struct rtnl_link *); extern int rtnl_link_vxlan_set_id(struct rtnl_link *, uint32_t); extern int rtnl_link_vxlan_get_id(struct rtnl_link *, uint32_t *); extern int rtnl_link_vxlan_set_group(struct rtnl_link *, struct nl_addr *); extern int rtnl_link_vxlan_get_group(struct rtnl_link *, struct nl_addr **); extern int rtnl_link_vxlan_set_link(struct rtnl_link *, uint32_t); extern int rtnl_link_vxlan_get_link(struct rtnl_link *, uint32_t *); extern int rtnl_link_vxlan_set_local(struct rtnl_link *, struct nl_addr *); extern int rtnl_link_vxlan_get_local(struct rtnl_link *, struct nl_addr **); extern int rtnl_link_vxlan_set_ttl(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_ttl(struct rtnl_link *); extern int rtnl_link_vxlan_set_tos(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_tos(struct rtnl_link *); extern int rtnl_link_vxlan_set_learning(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_learning(struct rtnl_link *); extern int rtnl_link_vxlan_enable_learning(struct rtnl_link *); extern int rtnl_link_vxlan_disable_learning(struct rtnl_link *); extern int rtnl_link_vxlan_set_ageing(struct rtnl_link *, uint32_t); extern int rtnl_link_vxlan_get_ageing(struct rtnl_link *, uint32_t *); extern int rtnl_link_vxlan_set_limit(struct rtnl_link *, uint32_t); extern int rtnl_link_vxlan_get_limit(struct rtnl_link *, uint32_t *); extern int rtnl_link_vxlan_set_port_range(struct rtnl_link *, struct ifla_vxlan_port_range *); extern int rtnl_link_vxlan_get_port_range(struct rtnl_link *, struct ifla_vxlan_port_range *); extern int rtnl_link_vxlan_set_proxy(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_proxy(struct rtnl_link *); extern int rtnl_link_vxlan_enable_proxy(struct rtnl_link *); extern int rtnl_link_vxlan_disable_proxy(struct rtnl_link *); extern int rtnl_link_vxlan_set_rsc(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_rsc(struct rtnl_link *); extern int rtnl_link_vxlan_enable_rsc(struct rtnl_link *); extern int rtnl_link_vxlan_disable_rsc(struct rtnl_link *); extern int rtnl_link_vxlan_set_l2miss(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_l2miss(struct rtnl_link *); extern int rtnl_link_vxlan_enable_l2miss(struct rtnl_link *); extern int rtnl_link_vxlan_disable_l2miss(struct rtnl_link *); extern int rtnl_link_vxlan_set_l3miss(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_l3miss(struct rtnl_link *); extern int rtnl_link_vxlan_enable_l3miss(struct rtnl_link *); extern int rtnl_link_vxlan_disable_l3miss(struct rtnl_link *); extern int rtnl_link_vxlan_set_port(struct rtnl_link *, uint32_t); extern int rtnl_link_vxlan_get_port(struct rtnl_link *, uint32_t *); extern int rtnl_link_vxlan_set_udp_csum(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_udp_csum(struct rtnl_link *); extern int rtnl_link_vxlan_set_udp_zero_csum6_tx(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_udp_zero_csum6_tx(struct rtnl_link *); extern int rtnl_link_vxlan_set_udp_zero_csum6_rx(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_udp_zero_csum6_rx(struct rtnl_link *); extern int rtnl_link_vxlan_set_remcsum_tx(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_remcsum_tx(struct rtnl_link *); extern int rtnl_link_vxlan_set_remcsum_rx(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_remcsum_rx(struct rtnl_link *); extern int rtnl_link_vxlan_set_flags(struct rtnl_link *, uint32_t flags, int enable); extern int rtnl_link_vxlan_get_flags(struct rtnl_link *, uint32_t *out_flags); extern int rtnl_link_vxlan_set_collect_metadata(struct rtnl_link *, uint8_t); extern int rtnl_link_vxlan_get_collect_metadata(struct rtnl_link *); extern int rtnl_link_vxlan_set_label(struct rtnl_link *, uint32_t); extern int rtnl_link_vxlan_get_label(struct rtnl_link *, uint32_t *); #ifdef __cplusplus } #endif #endif