mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-09 07:22:21 +08:00
Checkpoint. Code does not run. Still converting over to new
event loop model. Streams, stream filters, and sockets are converted. Client proxies are almost converted. CServer is in progress. Removed all HTTP code. Haven't converted the necessary win32 arch stuff.
This commit is contained in:
@@ -18,11 +18,8 @@
|
||||
// IDataSocket
|
||||
//
|
||||
|
||||
CEvent::Type IDataSocket::s_connectedEvent = CEvent::kUnknown;
|
||||
CEvent::Type IDataSocket::s_failedEvent = CEvent::kUnknown;
|
||||
CEvent::Type IDataSocket::s_inputEvent = CEvent::kUnknown;
|
||||
CEvent::Type IDataSocket::s_shutdownInputEvent = CEvent::kUnknown;
|
||||
CEvent::Type IDataSocket::s_shutdownOutputEvent = CEvent::kUnknown;
|
||||
CEvent::Type IDataSocket::s_connectedEvent = CEvent::kUnknown;
|
||||
CEvent::Type IDataSocket::s_failedEvent = CEvent::kUnknown;
|
||||
|
||||
CEvent::Type
|
||||
IDataSocket::getConnectedEvent()
|
||||
@@ -35,21 +32,3 @@ IDataSocket::getConnectionFailedEvent()
|
||||
{
|
||||
return CEvent::registerTypeOnce(s_failedEvent);
|
||||
}
|
||||
|
||||
CEvent::Type
|
||||
IDataSocket::getInputEvent()
|
||||
{
|
||||
return CEvent::registerTypeOnce(s_inputEvent);
|
||||
}
|
||||
|
||||
CEvent::Type
|
||||
IDataSocket::getShutdownInputEvent()
|
||||
{
|
||||
return CEvent::registerTypeOnce(s_shutdownInputEvent);
|
||||
}
|
||||
|
||||
CEvent::Type
|
||||
IDataSocket::getShutdownOutputEvent()
|
||||
{
|
||||
return CEvent::registerTypeOnce(s_shutdownOutputEvent);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user