1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef __LINUX_BRIDGE_EBT_ARPREPLY_H
3 #define __LINUX_BRIDGE_EBT_ARPREPLY_H
4 
5 #include <linux/if_ether.h>
6 
7 struct ebt_arpreply_info {
8 	unsigned char mac[ETH_ALEN];
9 	int target;
10 };
11 #define EBT_ARPREPLY_TARGET "arpreply"
12 
13 #endif