File: xt_PROTO.h

package info (click to toggle)
xtables-addons 3.30-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,588 kB
  • sloc: ansic: 11,712; sh: 5,151; perl: 643; makefile: 153; python: 15
file content (14 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/* Protocol modification module for IP tables */
#pragma once
#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, proto;
};