CPLChannel.hpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*====================================================================*
  2. Copyright (c) 2020 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. ******************************************************************
  6. 2013 Qualcomm Atheros, Inc.
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * CPLChannel.hpp - interface for the CPLChannel class
  11. *
  12. * Ethernet I/O channel managment for powerline applications;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <charles.maier@intellon.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef CPLCHANNEL_HEADER
  19. #define CPLCHANNEL_HEADER
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #if defined (WINPCAP)
  24. # include <pcap.h>
  25. # include <Packet32.h>
  26. # include <ntddndis.h>
  27. #endif
  28. /*====================================================================*
  29. * custom header files;
  30. *--------------------------------------------------------------------*/
  31. #include "../classes/stdafx.hpp"
  32. #include "../classes/oflagword.hpp"
  33. #include "../classes/ointerface.hpp"
  34. #include "../classes/ointellon.hpp"
  35. /*====================================================================*
  36. * class constants;
  37. *--------------------------------------------------------------------*/
  38. #define CPLCHANNEL_FLAG_VERBOSE (1 << 0)
  39. #define CPLCHANNEL_FLAG_SILENCE (1 << 1)
  40. #define CPLCHANNEL_ETHERTYPE 0x88E1 /* in host byte order */
  41. #define CPLCHANNEL_BPFDEVICE "/dev/bpf%d"
  42. #define CPLCHANNEL_TIMEOUT 100
  43. #define CPLCHANNEL_CANTREAD "Read timeout or network error"
  44. #define CPLCHANNEL_CANTSEND "Send timeout or network error"
  45. #define CPLCHANNEL_WONTDOIT "Device Refused Request"
  46. #define CPLCHANNEL_CANTDOIT "(0x%02X) %s"
  47. #define CPLCHANNEL_BRIDGES_MAX 0xFF
  48. #define CPLCHANNEL_DEVICES_MAX 0xFF
  49. /*====================================================================*
  50. * class declaration;
  51. *--------------------------------------------------------------------*/
  52. class __declspec (dllexport) CPLChannel: public oflagword, public oethernet, public ointerface
  53. {
  54. public:
  55. explicit CPLChannel (unsigned ifindex, unsigned timeout);
  56. explicit CPLChannel (char const * ifname, unsigned timeout);
  57. virtual ~ CPLChannel ();
  58. signed Descriptor (void) const;
  59. signed SendMessage (void const * memory, signed extent);
  60. signed ReadMessage (void * memory, signed extent);
  61. signed Bridges (void * memory, size_t extent);
  62. signed Neighbors (void * memory, size_t extent);
  63. private:
  64. CPLChannel & init (unsigned timeout);
  65. CPLChannel & open (void);
  66. CPLChannel & link (void);
  67. CPLChannel & dump (void const * memory, size_t extent);
  68. signed mfd;
  69. #if defined (__APPLE__) || defined (__OpenBSD__)
  70. unsigned bpf_length;
  71. #elif defined (WINPCAP)
  72. pcap_t * msocket;
  73. char merrbuf [PCAP_ERRBUF_SIZE];
  74. #endif
  75. unsigned mtimeout;
  76. };
  77. /*====================================================================*
  78. * end definition;
  79. *--------------------------------------------------------------------*/
  80. #endif