Home | History | Annotate | Download | only in netfilter_bridge
      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 #include <linux/if_ether.h>
     23 #define EBT_ARP_OPCODE 0x01
     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 #define EBT_ARP_SRC_MAC 0x20
     29 #define EBT_ARP_DST_MAC 0x40
     30 #define EBT_ARP_GRAT 0x80
     31 #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)
     32 #define EBT_ARP_MATCH "arp"
     33 struct ebt_arp_info {
     34   __be16 htype;
     35   __be16 ptype;
     36   __be16 opcode;
     37   __be32 saddr;
     38   __be32 smsk;
     39   __be32 daddr;
     40   __be32 dmsk;
     41   unsigned char smaddr[ETH_ALEN];
     42   unsigned char smmsk[ETH_ALEN];
     43   unsigned char dmaddr[ETH_ALEN];
     44   unsigned char dmmsk[ETH_ALEN];
     45   __u8 bitmask;
     46   __u8 invflags;
     47 };
     48 #endif
     49