blob: e17e8bfb4e8beba6e72ce72ec161528d5468ae32 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_BRIDGE_EBT_802_3_H
2#define __LINUX_BRIDGE_EBT_802_3_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/skbuff.h>
David Howells55c5cd32012-10-09 09:48:58 +01005#include <uapi/linux/netfilter_bridge/ebt_802_3.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7static inline struct ebt_802_3_hdr *ebt_802_3_hdr(const struct sk_buff *skb)
8{
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07009 return (struct ebt_802_3_hdr *)skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010}
11#endif