mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-05 20:26:38 +02:00
21 lines
324 B
C
21 lines
324 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
/* Protocol modification module for IP tables */
|
|
|
|
#ifndef _XT_PROTO_H
|
|
#define _XT_PROTO_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
enum {
|
|
XT_PROTO_SET = 0,
|
|
XT_PROTO_STOP_AT_FRAG = 1,
|
|
XT_PROTO_STOP_AT_AUTH = 2
|
|
};
|
|
|
|
struct xt_PROTO_info {
|
|
__u8 mode;
|
|
__u8 proto;
|
|
};
|
|
|
|
#endif
|