Home | History | Annotate | Download | only in iptables
      1 #ifndef _NFT_ARP_H_
      2 #define _NFT_ARP_H_
      3 
      4 extern char *opcodes[];
      5 #define NUMOPCODES 9
      6 
      7 struct arptables_command_state {
      8 	struct arpt_entry fw;
      9 	struct xtables_target *target;
     10 	const char *jumpto;
     11 };
     12 
     13 void nft_rule_to_arptables_command_state(struct nftnl_rule *r,
     14 					 struct arptables_command_state *cs);
     15 
     16 #endif
     17