https://github.com/torvalds/linux
Raw File
Tip revision: b07d68b5ca4d55a16fab223d63d5fb36f89ff42f authored by Linus Torvalds on 28 August 2007, 01:32:35 UTC
Linux 2.6.23-rc4
Tip revision: b07d68b
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