blob: 906196283185a566599d21a7d0e7f84b896fafd4 [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Ben Cheng30692c62013-10-15 18:26:18 -07002#ifndef _IP6T_MH_H
3#define _IP6T_MH_H
4
5#include <linux/types.h>
6
7/* MH matching stuff */
8struct 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*/