summaryrefslogtreecommitdiff
path: root/mainline/runtime/sdk/android/x86_64/include/bionic/libc/kernel/uapi/linux/netfilter/xt_l2tp.h
blob: 93d0721251d3d35631ce778eed10a206d9bb9133 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * This file is auto-generated. Modifications will be lost.
 *
 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
 * for more information.
 */
#ifndef _LINUX_NETFILTER_XT_L2TP_H
#define _LINUX_NETFILTER_XT_L2TP_H
#include <linux/types.h>
enum xt_l2tp_type {
  XT_L2TP_TYPE_CONTROL,
  XT_L2TP_TYPE_DATA,
};
struct xt_l2tp_info {
  __u32 tid;
  __u32 sid;
  __u8 version;
  __u8 type;
  __u8 flags;
};
enum {
  XT_L2TP_TID = (1 << 0),
  XT_L2TP_SID = (1 << 1),
  XT_L2TP_VERSION = (1 << 2),
  XT_L2TP_TYPE = (1 << 3),
};
#endif