URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [net/] [datalink.h] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _NET_INET_DATALINK_H_ #define _NET_INET_DATALINK_H_ struct datalink_proto { unsigned short type_len; unsigned char type[8]; const char *string_name; unsigned short header_length; int (*rcvfunc)(struct sk_buff *, struct device *, struct packet_type *); void (*datalink_header)(struct datalink_proto *, struct sk_buff *, unsigned char *); struct datalink_proto *next; }; #endif
Go to most recent revision | Compare with Previous | Blame | View Log