blob: 521f2e605f136f37a40dd1926128c373cfe6ea49 [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
Christopher Ferris12e1f282016-02-04 12:35:07 -08002/*
3 * mpls tunnel api
4 *
5 * Authors:
6 * Roopa Prabhu <roopa@cumulusnetworks.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#ifndef _UAPI_LINUX_MPLS_IPTUNNEL_H
15#define _UAPI_LINUX_MPLS_IPTUNNEL_H
16
17/* MPLS tunnel attributes
18 * [RTA_ENCAP] = {
19 * [MPLS_IPTUNNEL_DST]
Christopher Ferris0543f742017-07-26 13:09:46 -070020 * [MPLS_IPTUNNEL_TTL]
Christopher Ferris12e1f282016-02-04 12:35:07 -080021 * }
22 */
23enum {
24 MPLS_IPTUNNEL_UNSPEC,
25 MPLS_IPTUNNEL_DST,
Christopher Ferris0543f742017-07-26 13:09:46 -070026 MPLS_IPTUNNEL_TTL,
Christopher Ferris12e1f282016-02-04 12:35:07 -080027 __MPLS_IPTUNNEL_MAX,
28};
29#define MPLS_IPTUNNEL_MAX (__MPLS_IPTUNNEL_MAX - 1)
30
31#endif /* _UAPI_LINUX_MPLS_IPTUNNEL_H */