ethernet.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ethernet.h - substitute net/ethernet.h for systems without one;
  11. *
  12. *--------------------------------------------------------------------*/
  13. #ifndef ETHERNET_HEADER
  14. #define ETHERNET_HEADER
  15. /*====================================================================*
  16. * system header files;
  17. *--------------------------------------------------------------------*/
  18. #include <stdint.h>
  19. /*====================================================================*
  20. * Ethernet frame lengths;
  21. *--------------------------------------------------------------------*/
  22. #define ETHER_ADDR_LEN 6
  23. #define ETHER_TYPE_LEN 2
  24. #define ETHER_CRC_LEN 4
  25. #define ETHER_HDR_LEN (ETHER_ADDR_LEN + ETHER_ADDR_LEN + ETHER_TYPE_LEN)
  26. #define ETHER_MIN_LEN 64
  27. #define ETHER_MAX_LEN 1518
  28. #define ETHERMTU 1500
  29. #define ETHERMIN (ETHER_MIN_LEN - ETHER_HDR_LEN - ETHER_CRC_LEN)
  30. /*====================================================================*
  31. * Ethernet type/length field values;
  32. *--------------------------------------------------------------------*/
  33. #define ETHERTYPE_PUP 0x0200
  34. #define ETHERTYPE_IP 0x0800
  35. #define ETHERTYPE_ARP 0x0806
  36. #define ETHERTYPE_REVARP 0x8035
  37. #define ETHERTYPE_VLAN 0x8100
  38. #define ETHERTYPE_IPV6 0x86dd
  39. #define ETHERTYPE_LOOPBACK 0x9000
  40. #define ETHERTYPE_HP10 0x887B
  41. #define ETHERTYPE_HPAV 0x88E1
  42. /*====================================================================*
  43. * Ethernet frame structure;
  44. *--------------------------------------------------------------------*/
  45. #pragma pack (push, 1)
  46. struct ether_header
  47. {
  48. uint8_t ether_dhost [ETHER_ADDR_LEN];
  49. uint8_t ether_shost [ETHER_ADDR_LEN];
  50. uint16_t ether_type;
  51. };
  52. #pragma pack (pop)
  53. /*====================================================================*
  54. *
  55. *--------------------------------------------------------------------*/
  56. #endif