1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Update Net.hpp

This commit is contained in:
Sandu Liviu Catalin 2021-09-07 17:08:58 +03:00
parent d947bf75f5
commit e577a96f7e

View File

@ -31,7 +31,6 @@ namespace SqMod {
*/
struct WsClient
{
/* --------------------------------------------------------------------------------------------
* Flags received in the last call to Recv[String]Frame() (will be overwritten on next call).
*/
@ -47,17 +46,17 @@ struct WsClient
/* --------------------------------------------------------------------------------------------
* Receiving buffer instance.
*/
Poco::Buffer< char > mBuffer;
Poco::Buffer< char > mBuffer{0};
/* --------------------------------------------------------------------------------------------
* User tag associated with this instance.
*/
String mTag;
String mTag{};
/* --------------------------------------------------------------------------------------------
* User data associated with this instance.
*/
LightObj mData;
LightObj mData{};
/* --------------------------------------------------------------------------------------------
* HTTP client session instance.