1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 #ifndef _IP6T_MH_H 3 #define _IP6T_MH_H 4 5 #include <linux/types.h> 6 7 /* MH matching stuff */ 8 struct ip6t_mh { 9 __u8 types[2]; /* MH type range */ 10 __u8 invflags; /* Inverse flags */ 11 }; 12 13 /* Values for "invflags" field in struct ip6t_mh. */ 14 #define IP6T_MH_INV_TYPE 0x01 /* Invert the sense of type. */ 15 #define IP6T_MH_INV_MASK 0x01 /* All possible flags. */ 16 17 #endif /*_IP6T_MH_H*/ 18