https://github.com/torvalds/linux
Raw File
Tip revision: 374b105797c3d4f29c685f3be535c35f5689b30e authored by Linus Torvalds on 06 December 2013, 17:34:04 UTC
Linux 3.13-rc3
Tip revision: 374b105
datalink.h
#ifndef _NET_INET_DATALINK_H_
#define _NET_INET_DATALINK_H_

struct datalink_proto {
        unsigned char   type[8];

	struct llc_sap   *sap;

        unsigned short  header_length;

        int     (*rcvfunc)(struct sk_buff *, struct net_device *,
                                struct packet_type *, struct net_device *);
	int     (*request)(struct datalink_proto *, struct sk_buff *,
                                        unsigned char *);
	struct list_head node;
};

#endif
back to top