1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 #ifndef _XT_MAC_H 3 #define _XT_MAC_H 4 5 #include <linux/if_ether.h> 6 7 struct xt_mac_info { 8 unsigned char srcaddr[ETH_ALEN]; 9 int invert; 10 }; 11 #endif /*_XT_MAC_H*/ 12