mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-06 05:12:26 +08:00
Removed dead code
This commit is contained in:
committed by
Andrew Nelless
parent
08a73218e6
commit
07902d623c
@@ -74,10 +74,6 @@ protected:
|
||||
|
||||
ArchSocket getSocket() { return m_socket; }
|
||||
IEventQueue* getEvents() { return m_events; }
|
||||
virtual bool isSecureReady() { return false; }
|
||||
virtual bool isSecure() { return false; }
|
||||
virtual int secureRead(void* buffer, int, int& ) { return 0; }
|
||||
virtual int secureWrite(const void*, int, int& ) { return 0; }
|
||||
virtual EJobResult doRead();
|
||||
virtual EJobResult doWrite();
|
||||
|
||||
|
||||
@@ -50,11 +50,9 @@ public:
|
||||
void secureAccept();
|
||||
EJobResult doRead();
|
||||
EJobResult doWrite();
|
||||
bool isReady() const { return m_secureReady; }
|
||||
bool isFatal() const { return m_fatal; }
|
||||
void isFatal(bool b) { m_fatal = b; }
|
||||
bool isSecureReady();
|
||||
bool isSecure() { return true; }
|
||||
int secureRead(void* buffer, int size, int& read);
|
||||
int secureWrite(const void* buffer, int size, int& wrote);
|
||||
void initSsl(bool server);
|
||||
|
||||
Reference in New Issue
Block a user