https://github.com/torvalds/linux
Raw File
Tip revision: b30a3f6257ed2105259b404d419b4964e363928c authored by Linus Torvalds on 20 September 2010, 23:56:53 UTC
Linux 2.6.36-rc5
Tip revision: b30a3f6
p8022.h
#ifndef _NET_P8022_H
#define _NET_P8022_H
extern struct datalink_proto *
	register_8022_client(unsigned char type,
			     int (*func)(struct sk_buff *skb,
					 struct net_device *dev,
					 struct packet_type *pt,
					 struct net_device *orig_dev));
extern void unregister_8022_client(struct datalink_proto *proto);

extern struct datalink_proto *make_8023_client(void);
extern void destroy_8023_client(struct datalink_proto *dl);
#endif
back to top