oethernet.hpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * oethernet.hpp - oethernet class definitions and declaration;
  11. *
  12. * implement a standard Ethernet header consisting of peer address,
  13. * host address and ethertype; provide methods to encode and decode
  14. * external memory;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <charles.maier@intellon.com>
  18. *
  19. *--------------------------------------------------------------------*/
  20. #ifndef oETHERNET_HEADER
  21. #define oETHERNET_HEADER
  22. /*====================================================================*
  23. * system header files;
  24. *--------------------------------------------------------------------*/
  25. #include <stdint.h>
  26. /*====================================================================*
  27. * system header files;
  28. *--------------------------------------------------------------------*/
  29. #if defined (__linux__)
  30. # include <net/ethernet.h>
  31. #elif defined (__APPLE__)
  32. # include <net/ethernet.h>
  33. #elif defined (__OpenBSD__)
  34. # include <sys/types.h>
  35. # include <sys/socket.h>
  36. # include <net/if.h>
  37. # include <netinet/in.h>
  38. # include <netinet/if_ether.h>
  39. #elif defined (WINPCAP)
  40. # include <net/ethernet.h>
  41. #else
  42. #error "Unknown environment"
  43. #endif
  44. /*====================================================================*
  45. * custom header files;
  46. *--------------------------------------------------------------------*/
  47. #include "../classes/stdafx.hpp"
  48. /*====================================================================*
  49. * class constants;
  50. *--------------------------------------------------------------------*/
  51. #define oETHERNET_EMPTYCAST "00:00:00:00:00:00"
  52. #define oETHERNET_BROADCAST "FF:FF:FF:FF:FF:FF"
  53. /*====================================================================*
  54. * class datatypes;
  55. *--------------------------------------------------------------------*/
  56. typedef unsigned char byte;
  57. /*====================================================================*
  58. * class declaration;
  59. *--------------------------------------------------------------------*/
  60. class __declspec (dllexport) oethernet
  61. {
  62. public:
  63. oethernet (void);
  64. oethernet (uint16_t protocol);
  65. virtual ~ oethernet (void);
  66. size_t HeaderLength (void) const;
  67. const byte * HostAddress (void) const;
  68. const byte * PeerAddress (void) const;
  69. uint16_t Protocol (void) const;
  70. void * ExportHeader (void * memory) const;
  71. void * ExportPeerAddress (void * memory) const;
  72. void * ExportHostAddress (void * memory) const;
  73. void * ExportProtocol (void * memory) const;
  74. void const * ImportHeader (void const * memory);
  75. void const * ImportPeerAddress (void const * memory);
  76. void const * ImportHostAddress (void const * memory);
  77. void const * ImportProtocol (void const * memory);
  78. char const * HostAddressString (void) const;
  79. char const * PeerAddressString (void) const;
  80. char const * ProtocolString (void) const;
  81. oethernet & SetProtocol (uint16_t);
  82. oethernet & Print ();
  83. static byte const EmptycastAddress [ETHER_ADDR_LEN];
  84. static byte const BroadcastAddress [ETHER_ADDR_LEN];
  85. private:
  86. byte mpeeraddr [ETHER_ADDR_LEN];
  87. byte mhostaddr [ETHER_ADDR_LEN];
  88. uint16_t mprotocol;
  89. };
  90. /*====================================================================*
  91. * end declaration;
  92. *--------------------------------------------------------------------*/
  93. #endif