Allow legacy TCPServer::accept() to override inherited Socket::accept()

pull/7587/head
Seppo Takalo 2018-07-24 18:02:29 +03:00
parent 5d5ca62a5e
commit 96a90c2f2f
1 changed files with 3 additions and 0 deletions

View File

@ -59,6 +59,9 @@ public:
*/
virtual ~TCPServer();
// Allow legacy TCPServer::accept() to override inherited Socket::accept()
using TCPSocket::accept;
/** Accepts a connection on a TCP socket
*
* The server socket must be bound and set to listen for connections.