cleanup, remove dead method

This commit is contained in:
Benjamin Sergeant
2019-03-21 10:06:59 -07:00
parent fe700d1e7b
commit 5b6fdb6526
5 changed files with 45 additions and 8 deletions

View File

@ -287,12 +287,6 @@ namespace ix
}
}
void WebSocketTransport::appendToSendBuffer(const std::vector<uint8_t>& buffer)
{
std::lock_guard<std::mutex> lock(_txbufMutex);
_txbuf.insert(_txbuf.end(), buffer.begin(), buffer.end());
}
void WebSocketTransport::unmaskReceiveBuffer(const wsheader_type& ws)
{
if (ws.mask)