File: xt_PROTO.h

package info (click to toggle)
xtables-addons 3.13-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,504 kB
  • sloc: ansic: 10,717; sh: 4,481; perl: 356; makefile: 143; python: 15
file content (20 lines) | stat: -rw-r--r-- 324 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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