LibCore: Remove CSocket's bind() and listen().

We're going to be using dedicated server socket classes instead.
This was only implemented for CLocalSocket, and clients have been switched
over to using CLocalServer.
This commit is contained in:
Andreas Kling 2019-07-27 10:57:30 +02:00
commit e7957db173
Notes: sideshowbarker 2024-07-19 13:02:04 +09:00
6 changed files with 0 additions and 28 deletions

View file

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