mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
Update Net.hpp
This commit is contained in:
parent
d947bf75f5
commit
e577a96f7e
@ -31,7 +31,6 @@ namespace SqMod {
|
|||||||
*/
|
*/
|
||||||
struct WsClient
|
struct WsClient
|
||||||
{
|
{
|
||||||
|
|
||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* Flags received in the last call to Recv[String]Frame() (will be overwritten on next call).
|
* 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.
|
* Receiving buffer instance.
|
||||||
*/
|
*/
|
||||||
Poco::Buffer< char > mBuffer;
|
Poco::Buffer< char > mBuffer{0};
|
||||||
|
|
||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* User tag associated with this instance.
|
* User tag associated with this instance.
|
||||||
*/
|
*/
|
||||||
String mTag;
|
String mTag{};
|
||||||
|
|
||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* User data associated with this instance.
|
* User data associated with this instance.
|
||||||
*/
|
*/
|
||||||
LightObj mData;
|
LightObj mData{};
|
||||||
|
|
||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* HTTP client session instance.
|
* HTTP client session instance.
|
||||||
|
Loading…
Reference in New Issue
Block a user