CPLStation.hpp 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * CPLStation.hpp - CPLStation class definitions and declarations;
  11. *
  12. * this object implements one powerline adapter;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <charles.maier@intellon.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef CPLSTATION_HEADER
  19. #define CPLSTATION_HEADER
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #if defined (__linux__)
  24. # include <net/ethernet.h>
  25. #elif defined (__APPLE__)
  26. # include <net/ethernet.h>
  27. #elif defined (__OpenBSD__)
  28. # include <sys/socket.h>
  29. # include <net/if.h>
  30. # include <netinet/in.h>
  31. # include <netinet/if_ether.h>
  32. #elif defined (WINPCAP)
  33. # include <net/ethernet.h>
  34. #else
  35. #error "Unknown environment"
  36. #endif
  37. /*====================================================================*
  38. * custom header files;
  39. *--------------------------------------------------------------------*/
  40. #include "../classes/stdafx.hpp"
  41. #include "../classes/CPLChannel.hpp"
  42. /*====================================================================*
  43. * class constants;
  44. *--------------------------------------------------------------------*/
  45. #define CPLSTATION_UNKNOWN 0
  46. #define CPLSTATION_INT6000 1
  47. #define CPLSTATION_INT6300 2
  48. #define CPLSTATION_INT6400 3
  49. #define CPLSTATION_AR7400 4
  50. #define CPLSTATION_AR6405 5
  51. #define CPLSTATION_CHIPSET_MAX CPLSTATION_AR6405
  52. #define CPLSTATION_BRIDGE 0
  53. #define CPLSTATION_REMOTE 1
  54. #define CPLSTATION_STA 0
  55. #define CPLSTATION_CCO 1
  56. /*====================================================================*
  57. * class constants;
  58. *--------------------------------------------------------------------*/
  59. typedef unsigned char byte;
  60. /*====================================================================*
  61. * class declaration;
  62. *--------------------------------------------------------------------*/
  63. class __declspec (dllexport) CPLStation
  64. {
  65. friend class CPLNetwork;
  66. public:
  67. CPLStation ();
  68. virtual ~ CPLStation ();
  69. bool IsBridge (void) const;
  70. unsigned LinkType (void) const;
  71. unsigned RoleType (void) const;
  72. char const * LinkName (void) const;
  73. char const * RoleName (void) const;
  74. unsigned StationID (void) const;
  75. byte const * NodeAddress (void) const;
  76. char const * NodeAddressString () const;
  77. byte const * HostAddress (void) const;
  78. char const * HostAddressString () const;
  79. unsigned TxRate (void) const;
  80. unsigned RxRate (void) const;
  81. unsigned HardwareType (void) const;
  82. char const * HardwareName (void) const;
  83. char const * FirmwareName (void) const;
  84. CPLStation & Revision (CPLChannel *);
  85. CPLStation & Preface ();
  86. CPLStation & Print ();
  87. static char const * PrefaceString;
  88. private:
  89. static char const * chipset [];
  90. static char const * link [];
  91. static char const * role [];
  92. byte mstation;
  93. byte mlink;
  94. byte mrole;
  95. byte mnodeaddr [ETHER_ADDR_LEN];
  96. byte mhostaddr [ETHER_ADDR_LEN];
  97. byte mtxrate;
  98. byte mrxrate;
  99. byte mhardware;
  100. char mfirmware [128];
  101. };
  102. /*====================================================================*
  103. * end declaration;
  104. *--------------------------------------------------------------------*/
  105. #endif