blob: 93cb18f729b5bac2185990b3eb36cbe5a1d74144 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _NET_INET_DATALINK_H_
2#define _NET_INET_DATALINK_H_
3
4struct datalink_proto {
5 unsigned char type[8];
6
7 struct llc_sap *sap;
8
9 unsigned short header_length;
10
11 int (*rcvfunc)(struct sk_buff *, struct net_device *,
David S. Millerf2ccd8f2005-08-09 19:34:12 -070012 struct packet_type *, struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 int (*request)(struct datalink_proto *, struct sk_buff *,
14 unsigned char *);
15 struct list_head node;
16};
17
Rashika Kheria7780d8a2014-02-09 22:27:41 +053018struct datalink_proto *make_EII_client(void);
19void destroy_EII_client(struct datalink_proto *dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#endif