mirror of https://github.com/ARMmbed/mbed-os.git
Allow legacy TCPServer::accept() to override inherited Socket::accept()
parent
5d5ca62a5e
commit
96a90c2f2f
|
@ -59,6 +59,9 @@ public:
|
||||||
*/
|
*/
|
||||||
virtual ~TCPServer();
|
virtual ~TCPServer();
|
||||||
|
|
||||||
|
// Allow legacy TCPServer::accept() to override inherited Socket::accept()
|
||||||
|
using TCPSocket::accept;
|
||||||
|
|
||||||
/** Accepts a connection on a TCP socket
|
/** Accepts a connection on a TCP socket
|
||||||
*
|
*
|
||||||
* The server socket must be bound and set to listen for connections.
|
* The server socket must be bound and set to listen for connections.
|
||||||
|
|
Loading…
Reference in New Issue