Added missing virtual to Socket::accept().

This commit is contained in:
marian 2023-05-18 14:48:26 +03:00
parent 75bd7e1ee6
commit 4b9310defc
1 changed files with 1 additions and 1 deletions

View File

@ -9323,7 +9323,7 @@ public:
* @param addr Address to fill in with the address of the incoming connection
* @return Open socket to the new connection or NULL on failure
*/
Socket* accept(SocketAddr& addr);
virtual Socket* accept(SocketAddr& addr);
/**
* Create a new socket for an incoming connection attempt on a listening socket