1 /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ 2 /* 3 * IPv6 IOAM Lightweight Tunnel API 4 * 5 * Author: 6 * Justin Iurman <justin.iurman@uliege.be> 7 */ 8 9 #ifndef _UAPI_LINUX_IOAM6_IPTUNNEL_H 10 #define _UAPI_LINUX_IOAM6_IPTUNNEL_H 11 12 enum { 13 IOAM6_IPTUNNEL_UNSPEC, 14 IOAM6_IPTUNNEL_TRACE, /* struct ioam6_trace_hdr */ 15 __IOAM6_IPTUNNEL_MAX, 16 }; 17 18 #define IOAM6_IPTUNNEL_MAX (__IOAM6_IPTUNNEL_MAX - 1) 19 20 #endif /* _UAPI_LINUX_IOAM6_IPTUNNEL_H */ 21