Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ |
|---|---|
| 2 | #ifndef __LINUX_BRIDGE_EBT_MARK_M_H |
| 3 | #define __LINUX_BRIDGE_EBT_MARK_M_H |
| 4 | |
| 5 | #include <linux/types.h> |
| 6 | |
| 7 | #define EBT_MARK_AND 0x01 |
| 8 | #define EBT_MARK_OR 0x02 |
| 9 | #define EBT_MARK_MASK (EBT_MARK_AND | EBT_MARK_OR) |
| 10 | struct ebt_mark_m_info { |
| 11 | unsigned long mark, mask; |
| 12 | __u8 invert; |
| 13 | __u8 bitmask; |
| 14 | }; |
| 15 | #define EBT_MARK_MATCH "mark_m" |
| 16 | |
| 17 | #endif |
| 18 |
Warning: This file is not a C or C++ file. It does not have highlighting.
