diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-03-12 04:15:21 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-03-12 04:15:21 -0400 |
commit | 98218dfde37ce595401a0c1446d9e40418cc15d6 (patch) | |
tree | 0bbd088229804c4317f33cccb71e14a07d9a9e17 /src/discord/voiceclient.hpp | |
parent | b3a8356e6bb0c5adf40ca68a4a5daf50ef2ada26 (diff) | |
download | abaddon-portaudio-98218dfde37ce595401a0c1446d9e40418cc15d6.tar.gz abaddon-portaudio-98218dfde37ce595401a0c1446d9e40418cc15d6.zip |
initial stages stuff
Diffstat (limited to 'src/discord/voiceclient.hpp')
-rw-r--r-- | src/discord/voiceclient.hpp | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/src/discord/voiceclient.hpp b/src/discord/voiceclient.hpp index 0112749..aa1014c 100644 --- a/src/discord/voiceclient.hpp +++ b/src/discord/voiceclient.hpp @@ -43,6 +43,23 @@ enum class VoiceGatewayOp : int { Hello = 8, Resumed = 9, ClientDisconnect = 13, + SessionUpdate = 14, + MediaSinkWants = 15, + VoiceBackendVersion = 16, + ChannelOptionsUpdate = 17, + Flags = 18, + SpeedTest = 19, + Platform = 20, + SecureFramesPrepareProtocolTransition = 21, + SecureFramesExecuteTransition = 22, + SecureFramesReadyForTransition = 23, + SecureFramesPrepareEpoch = 24, + MlsExternalSenderPackage = 25, + MlsKeyPackage = 26, + MlsProposals = 27, + MlsCommitWelcome = 28, + MlsPrepareCommitTransition = 29, + MlsWelcome = 30, }; struct VoiceGatewayMessage { @@ -156,11 +173,11 @@ public: private: void ReadThread(); - #ifdef _WIN32 +#ifdef _WIN32 SOCKET m_socket; - #else +#else int m_socket; - #endif +#endif sockaddr_in m_server; std::atomic<bool> m_running = false; |