swh:1:snp:49cd9498d6cccc5e78252c27dcb645bcf7bf0c91
Raw File
Tip revision: 31ade3b83e1821da5fbb2f11b5b3d4ab2ec39db8 authored by Linus Torvalds on 30 November 2015, 02:58:26 UTC
Linux 4.4-rc3
Tip revision: 31ade3b
p8022.h
#ifndef _NET_P8022_H
#define _NET_P8022_H
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));
void unregister_8022_client(struct datalink_proto *proto);

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