LibCore: Add CSocket::bind() (virtual) and CSocket::listen().

These will be useful for implementing server sockets.
This commit is contained in:
Andreas Kling 2019-07-26 22:39:16 +02:00
commit be2b585ca6
Notes: sideshowbarker 2024-07-19 13:02:45 +09:00
7 changed files with 42 additions and 4 deletions

View file

@ -17,3 +17,8 @@ CTCPSocket::CTCPSocket(CObject* parent)
CTCPSocket::~CTCPSocket()
{
}
bool CTCPSocket::bind(const CSocketAddress&)
{
ASSERT_NOT_REACHED();
}