1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _ARPT_MANGLE_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _ARPT_MANGLE_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/netfilter_arp/arp_tables.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define ARPT_MANGLE_ADDR_LEN_MAX sizeof(struct in_addr)
23d7db594b8d1dab36b711bd887a9dd21675c87243Tao Baostruct arpt_mangle {
24d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  char src_devaddr[ARPT_DEV_ADDR_LEN_MAX];
25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  char tgt_devaddr[ARPT_DEV_ADDR_LEN_MAX];
26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  union {
27d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao    struct in_addr src_ip;
28d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  } u_s;
29d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  union {
30d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao    struct in_addr tgt_ip;
31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  } u_t;
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 flags;
33d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  int target;
34655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
35655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define ARPT_MANGLE_SDEV 0x01
36655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define ARPT_MANGLE_TDEV 0x02
37655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define ARPT_MANGLE_SIP 0x04
38655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define ARPT_MANGLE_TIP 0x08
39655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define ARPT_MANGLE_MASK 0x0f
40a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
41