//--------------------------------------------------------------------------- // // SCSI Target Emulator RaSCSI (*^..^*) // for Raspberry Pi // // Powered by XM6 TypeG Technology. // Copyright (C) 2016-2020 GIMONS // Copyright (C) akuker // // Imported NetBSD support and some optimisation patch by Rin Okuyama. // // [ TAP Driver ] // //--------------------------------------------------------------------------- #if !defined(ctapdriver_h) #define ctapdriver_h #include #include "filepath.h" #ifndef ETH_FRAME_LEN #define ETH_FRAME_LEN 1514 #endif //=========================================================================== // // Linux Tap Driver // //=========================================================================== class CTapDriver { public: // Basic Functionality CTapDriver(); // Constructor BOOL Init(); // Initilization const char *OpenDump(const Filepath& path); // Capture packets void Cleanup(); // Cleanup void GetMacAddr(BYTE *mac); // Get Mac Address int Rx(BYTE *buf); // Receive int Tx(const BYTE *buf, int len); // Send BOOL PendingPackets(); // Check if there are IP packets available BOOL Enable(); // Enable the ras0 interface BOOL Disable(); // Disable the ras0 interface BOOL Flush(); // Purge all of the packets that are waiting to be processed private: BYTE m_MacAddr[6]; // MAC Address BOOL m_bTxValid; // Send Valid Flag int m_hTAP; // File handle BYTE m_garbage_buffer[ETH_FRAME_LEN]; pcap_t *m_pcap; pcap_dumper_t *m_pcap_dumper; }; #endif // ctapdriver_h