fix buggy message and remove un-needed include

This commit is contained in:
Benjamin Sergeant 2020-11-19 14:27:10 -08:00
parent 223cd41b3c
commit 75e9c84388
2 changed files with 1 additions and 2 deletions

View File

@ -12,7 +12,6 @@
#include "IXWebSocketOpenInfo.h" #include "IXWebSocketOpenInfo.h"
#include <memory> #include <memory>
#include <string> #include <string>
#include <thread>
namespace ix namespace ix
{ {

View File

@ -146,7 +146,7 @@ namespace ix
// Contains all messages that were fetched in the last socket read. // Contains all messages that were fetched in the last socket read.
// This could be a mix of control messages (Close, Ping, etc...) and // This could be a mix of control messages (Close, Ping, etc...) and
// data messages. That buffer // data messages. That buffer is resized
std::vector<uint8_t> _rxbuf; std::vector<uint8_t> _rxbuf;
// Contains all messages that are waiting to be sent // Contains all messages that are waiting to be sent