ebt_arp.h revision 655a7c081f83b8351ed5f11a6c6accd9458293a8
1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ***   To edit the content of this header, modify the corresponding
11 ***   source file (e.g. under external/kernel-headers/original/) then
12 ***   run bionic/libc/kernel/tools/update_all.py
13 ***
14 ***   Any manual change here will be lost the next time this script will
15 ***   be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef __LINUX_BRIDGE_EBT_ARP_H
20#define __LINUX_BRIDGE_EBT_ARP_H
21#include <linux/types.h>
22#define EBT_ARP_OPCODE 0x01
23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24#define EBT_ARP_HTYPE 0x02
25#define EBT_ARP_PTYPE 0x04
26#define EBT_ARP_SRC_IP 0x08
27#define EBT_ARP_DST_IP 0x10
28/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29#define EBT_ARP_SRC_MAC 0x20
30#define EBT_ARP_DST_MAC 0x40
31#define EBT_ARP_GRAT 0x80
32#define EBT_ARP_MASK (EBT_ARP_OPCODE | EBT_ARP_HTYPE | EBT_ARP_PTYPE |   EBT_ARP_SRC_IP | EBT_ARP_DST_IP | EBT_ARP_SRC_MAC | EBT_ARP_DST_MAC |   EBT_ARP_GRAT)
33/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34#define EBT_ARP_MATCH "arp"
35struct ebt_arp_info
36{
37 __be16 htype;
38/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39 __be16 ptype;
40 __be16 opcode;
41 __be32 saddr;
42 __be32 smsk;
43/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44 __be32 daddr;
45 __be32 dmsk;
46 unsigned char smaddr[ETH_ALEN];
47 unsigned char smmsk[ETH_ALEN];
48/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49 unsigned char dmaddr[ETH_ALEN];
50 unsigned char dmmsk[ETH_ALEN];
51 __u8 bitmask;
52 __u8 invflags;
53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54};
55#endif
56