p8023.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * NET3: 802.3 data link hooks used for IPX 802.3
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version
  7.  * 2 of the License, or (at your option) any later version.
  8.  *
  9.  * 802.3 isn't really a protocol data link layer. Some old IPX stuff
  10.  * uses it however. Note that there is only one 802.3 protocol layer
  11.  * in the system. We don't currently support different protocols
  12.  * running raw 802.3 on different devices. Thankfully nobody else
  13.  * has done anything like the old IPX.
  14.  */
  15.  
  16. #include <linux/netdevice.h>
  17. #include <linux/skbuff.h>
  18. #include <net/datalink.h>
  19. #include <linux/mm.h>
  20. #include <linux/in.h>
  21. /*
  22.  * Place an 802.3 header on a packet. The driver will do the mac
  23.  * addresses, we just need to give it the buffer length.
  24.  */
  25.  
  26. static void p8023_datalink_header(struct datalink_proto *dl, 
  27. struct sk_buff *skb, unsigned char *dest_node)
  28. {
  29. struct net_device *dev = skb->dev;
  30. dev->hard_header(skb, dev, ETH_P_802_3, dest_node, NULL, skb->len);
  31. }
  32. /*
  33.  * Create an 802.3 client. Note there can be only one 802.3 client
  34.  */
  35.  
  36. struct datalink_proto *make_8023_client(void)
  37. {
  38. struct datalink_proto *proto;
  39. proto = (struct datalink_proto *) kmalloc(sizeof(*proto), GFP_ATOMIC);
  40. if (proto != NULL) 
  41. {
  42. proto->type_len = 0;
  43. proto->header_length = 0;
  44. proto->datalink_header = p8023_datalink_header;
  45. proto->string_name = "802.3";
  46. }
  47. return proto;
  48. }
  49. /*
  50.  * Destroy the 802.3 client.
  51.  */
  52.  
  53. void destroy_8023_client(struct datalink_proto *dl)
  54. {
  55. if (dl)
  56. kfree(dl);
  57. }