Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _NET_INET_DATALINK_H_ |
| 3 | #define _NET_INET_DATALINK_H_ |
| 4 | |
| 5 | struct datalink_proto { |
| 6 | unsigned char type[8]; |
| 7 | |
| 8 | struct llc_sap *sap; |
| 9 | |
| 10 | unsigned short header_length; |
| 11 | |
| 12 | int (*rcvfunc)(struct sk_buff *, struct net_device *, |
David S. Miller | f2ccd8f | 2005-08-09 19:34:12 -0700 | [diff] [blame] | 13 | struct packet_type *, struct net_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | int (*request)(struct datalink_proto *, struct sk_buff *, |
| 15 | unsigned char *); |
| 16 | struct list_head node; |
| 17 | }; |
| 18 | |
Rashika Kheria | 7780d8a | 2014-02-09 22:27:41 +0530 | [diff] [blame] | 19 | struct datalink_proto *make_EII_client(void); |
| 20 | void destroy_EII_client(struct datalink_proto *dl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #endif |