fix: need an implementation of available() for WebSocketImpl

This commit is contained in:
Guenter Obiltschnig
2015-09-18 22:42:49 +02:00
parent 89816c0ea2
commit 4e375945f9
2 changed files with 7 additions and 0 deletions

View File

@@ -322,5 +322,11 @@ Poco::Timespan WebSocketImpl::getReceiveTimeout()
return _pStreamSocketImpl->getReceiveTimeout();
}
int WebSocketImpl::available()
{
return _pStreamSocketImpl->available();
}
} } // namespace Poco::Net