Blame include/uapi/linux/mpls_iptunnel.h

Packit Service 3880ab
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
Packit Service 3880ab
/*
Packit Service 3880ab
 *	mpls tunnel api
Packit Service 3880ab
 *
Packit Service 3880ab
 *	Authors:
Packit Service 3880ab
 *		Roopa Prabhu <roopa@cumulusnetworks.com>
Packit Service 3880ab
 *
Packit Service 3880ab
 *	This program is free software; you can redistribute it and/or
Packit Service 3880ab
 *	modify it under the terms of the GNU General Public License
Packit Service 3880ab
 *	as published by the Free Software Foundation; either version
Packit Service 3880ab
 *	2 of the License, or (at your option) any later version.
Packit Service 3880ab
 */
Packit Service 3880ab
Packit Service 3880ab
#ifndef _LINUX_MPLS_IPTUNNEL_H
Packit Service 3880ab
#define _LINUX_MPLS_IPTUNNEL_H
Packit Service 3880ab
Packit Service 3880ab
/* MPLS tunnel attributes
Packit Service 3880ab
 * [RTA_ENCAP] = {
Packit Service 3880ab
 *     [MPLS_IPTUNNEL_DST]
Packit Service 3880ab
 *     [MPLS_IPTUNNEL_TTL]
Packit Service 3880ab
 * }
Packit Service 3880ab
 */
Packit Service 3880ab
enum {
Packit Service 3880ab
	MPLS_IPTUNNEL_UNSPEC,
Packit Service 3880ab
	MPLS_IPTUNNEL_DST,
Packit Service 3880ab
	MPLS_IPTUNNEL_TTL,
Packit Service 3880ab
	__MPLS_IPTUNNEL_MAX,
Packit Service 3880ab
};
Packit Service 3880ab
#define MPLS_IPTUNNEL_MAX (__MPLS_IPTUNNEL_MAX - 1)
Packit Service 3880ab
Packit Service 3880ab
#endif /* _LINUX_MPLS_IPTUNNEL_H */