add tunnel header files from net-next uapi
Files needed for new lwtunnel code.
This commit is contained in:
parent
c6646c1ea5
commit
e569c5c0fd
|
|
@ -0,0 +1,43 @@
|
|||
#ifndef _LWTUNNEL_H_
|
||||
#define _LWTUNNEL_H_
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
enum lwtunnel_encap_types {
|
||||
LWTUNNEL_ENCAP_NONE,
|
||||
LWTUNNEL_ENCAP_MPLS,
|
||||
LWTUNNEL_ENCAP_IP,
|
||||
LWTUNNEL_ENCAP_ILA,
|
||||
LWTUNNEL_ENCAP_IP6,
|
||||
__LWTUNNEL_ENCAP_MAX,
|
||||
};
|
||||
|
||||
#define LWTUNNEL_ENCAP_MAX (__LWTUNNEL_ENCAP_MAX - 1)
|
||||
|
||||
enum lwtunnel_ip_t {
|
||||
LWTUNNEL_IP_UNSPEC,
|
||||
LWTUNNEL_IP_ID,
|
||||
LWTUNNEL_IP_DST,
|
||||
LWTUNNEL_IP_SRC,
|
||||
LWTUNNEL_IP_TTL,
|
||||
LWTUNNEL_IP_TOS,
|
||||
LWTUNNEL_IP_FLAGS,
|
||||
__LWTUNNEL_IP_MAX,
|
||||
};
|
||||
|
||||
#define LWTUNNEL_IP_MAX (__LWTUNNEL_IP_MAX - 1)
|
||||
|
||||
enum lwtunnel_ip6_t {
|
||||
LWTUNNEL_IP6_UNSPEC,
|
||||
LWTUNNEL_IP6_ID,
|
||||
LWTUNNEL_IP6_DST,
|
||||
LWTUNNEL_IP6_SRC,
|
||||
LWTUNNEL_IP6_HOPLIMIT,
|
||||
LWTUNNEL_IP6_TC,
|
||||
LWTUNNEL_IP6_FLAGS,
|
||||
__LWTUNNEL_IP6_MAX,
|
||||
};
|
||||
|
||||
#define LWTUNNEL_IP6_MAX (__LWTUNNEL_IP6_MAX - 1)
|
||||
|
||||
#endif /* _LWTUNNEL_H_ */
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* mpls tunnel api
|
||||
*
|
||||
* Authors:
|
||||
* Roopa Prabhu <roopa@cumulusnetworks.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_MPLS_IPTUNNEL_H
|
||||
#define _LINUX_MPLS_IPTUNNEL_H
|
||||
|
||||
/* MPLS tunnel attributes
|
||||
* [RTA_ENCAP] = {
|
||||
* [MPLS_IPTUNNEL_DST]
|
||||
* }
|
||||
*/
|
||||
enum {
|
||||
MPLS_IPTUNNEL_UNSPEC,
|
||||
MPLS_IPTUNNEL_DST,
|
||||
__MPLS_IPTUNNEL_MAX,
|
||||
};
|
||||
#define MPLS_IPTUNNEL_MAX (__MPLS_IPTUNNEL_MAX - 1)
|
||||
|
||||
#endif /* _LINUX_MPLS_IPTUNNEL_H */
|
||||
Loading…
Reference in New Issue