ebt_802_3.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_BRIDGE_EBT_802_3_H
  2. #define __LINUX_BRIDGE_EBT_802_3_H
  3. #define EBT_802_3_SAP 0x01
  4. #define EBT_802_3_TYPE 0x02
  5. #define EBT_802_3_MATCH "802_3"
  6. /*
  7.  * If frame has DSAP/SSAP value 0xaa you must check the SNAP type
  8.  * to discover what kind of packet we're carrying. 
  9.  */
  10. #define CHECK_TYPE 0xaa
  11. /*
  12.  * Control field may be one or two bytes.  If the first byte has
  13.  * the value 0x03 then the entire length is one byte, otherwise it is two.
  14.  * One byte controls are used in Unnumbered Information frames.
  15.  * Two byte controls are used in Numbered Information frames.
  16.  */
  17. #define IS_UI 0x03
  18. #define EBT_802_3_MASK (EBT_802_3_SAP | EBT_802_3_TYPE | EBT_802_3)
  19. /* ui has one byte ctrl, ni has two */
  20. struct hdr_ui {
  21. uint8_t dsap;
  22. uint8_t ssap;
  23. uint8_t ctrl;
  24. uint8_t orig[3];
  25. uint16_t type;
  26. };
  27. struct hdr_ni {
  28. uint8_t dsap;
  29. uint8_t ssap;
  30. uint16_t ctrl;
  31. uint8_t  orig[3];
  32. uint16_t type;
  33. };
  34. struct ebt_802_3_hdr {
  35. uint8_t  daddr[6];
  36. uint8_t  saddr[6];
  37. uint16_t len;
  38. union {
  39. struct hdr_ui ui;
  40. struct hdr_ni ni;
  41. } llc;
  42. };
  43. #ifdef __KERNEL__
  44. #include <linux/skbuff.h>
  45. static inline struct ebt_802_3_hdr *ebt_802_3_hdr(const struct sk_buff *skb)
  46. {
  47. return (struct ebt_802_3_hdr *)skb->mac.raw;
  48. }
  49. #endif
  50. struct ebt_802_3_info 
  51. {
  52. uint8_t  sap;
  53. uint16_t type;
  54. uint8_t  bitmask;
  55. uint8_t  invflags;
  56. };
  57. #endif