diff options
author | George Hazan <george.hazan@gmail.com> | 2023-06-14 18:46:42 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-06-14 18:46:42 +0300 |
commit | adad56d5f50eaaab8b3e9caa1cfc026ccb424d21 (patch) | |
tree | 600383c3dd1dfa2560ea99ae94a07d2efc7b8292 /protocols/Steam/src/steam_proto.h | |
parent | 3e0d298dfa998ffc0ea3b6687f8f04fba67c5e04 (diff) |
Steam: websocket: beginning
Diffstat (limited to 'protocols/Steam/src/steam_proto.h')
-rw-r--r-- | protocols/Steam/src/steam_proto.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/protocols/Steam/src/steam_proto.h b/protocols/Steam/src/steam_proto.h index 3df33f9988..d2992cfb8a 100644 --- a/protocols/Steam/src/steam_proto.h +++ b/protocols/Steam/src/steam_proto.h @@ -50,7 +50,7 @@ class CSteamProto : public PROTO<CSteamProto> ptrW m_password;
ptrW m_defaultGroup;
- bool isLoginAgain;
+ bool isLoginAgain, m_bTerminated;
time_t m_idleTS;
HWND m_hwndGuard;
@@ -62,8 +62,9 @@ class CSteamProto : public PROTO<CSteamProto> std::map<HANDLE, time_t> m_mpOutMessages;
// connection
- HANDLE m_hServerThread;
+ HNETLIBCONN m_hServerConn;
void __cdecl ServerThread(void *);
+ bool ServerThreadStub(const char *szHost);
// requests
bool SendRequest(HttpRequest *request);
|