Add listen implementation.

This commit is contained in:
Jean-Baptiste Perrier
2021-01-24 00:02:24 +01:00
parent 9b300fe074
commit 3ab54bd7e1
4 changed files with 17 additions and 0 deletions

View File

@@ -31,6 +31,11 @@ bool NetworkBase::BindSocket(NetworkSocket& socket, NetworkEndPoint& endPoint)
return false;
}
bool NetworkBase::Listen(NetworkSocket& socket, int32 queueSize)
{
return false;
}
bool NetworkBase::Accept(NetworkSocket& serverSock, NetworkSocket& newSock, NetworkEndPoint& newEndPoint)
{
return false;