diff options
author | George Hazan <george.hazan@gmail.com> | 2024-12-16 17:01:23 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-12-16 17:01:23 +0300 |
commit | 7e96fae97e5496a761ad83844a97b251eb14d992 (patch) | |
tree | 2486adf497534985abaffa1acc6f3cb620571d00 /protocols/Steam/src/steam_server.cpp | |
parent | 1a281be614bf7965ae57402ce2c90af3e15af8c0 (diff) |
GetConversationsRequest removed
Diffstat (limited to 'protocols/Steam/src/steam_server.cpp')
-rw-r--r-- | protocols/Steam/src/steam_server.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/protocols/Steam/src/steam_server.cpp b/protocols/Steam/src/steam_server.cpp index d1045e6ca2..4528ccecfe 100644 --- a/protocols/Steam/src/steam_server.cpp +++ b/protocols/Steam/src/steam_server.cpp @@ -66,6 +66,15 @@ void CSteamProto::OnMessageSent(const CFriendMessagesSendMessageResponse &reply, ///////////////////////////////////////////////////////////////////////////////////////// +void CSteamProto::SendFriendActiveSessions() +{ + CFriendsMessagesGetActiveMessageSessionsRequest request; + request.has_only_sessions_with_messages = request.only_sessions_with_messages = true; + WSSendService(FriendGetActiveSessions, request); +} + +///////////////////////////////////////////////////////////////////////////////////////// + void CSteamProto::SendUserInfoRequest(const std::vector<uint64_t> &ids, bool bRetrieveState) { CMsgClientRequestFriendData request; |