diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-03-24 20:43:37 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-03-24 20:51:08 -0700 |
commit | e272e387d3ce2111d2a045f79671b3ebc3819267 (patch) | |
tree | dddf352fa69cd8bce253bdeaed06a7799fb63bde /indra/newview/llvoicewebrtc.h | |
parent | 92171a42c99a7fcd1751d2b6fae492c5aac466e0 (diff) |
Throw 'area full' message when the voice server reports max users for voice
Diffstat (limited to 'indra/newview/llvoicewebrtc.h')
-rw-r--r-- | indra/newview/llvoicewebrtc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llvoicewebrtc.h b/indra/newview/llvoicewebrtc.h index f6ddc6dbe7..4fe0e756a7 100644 --- a/indra/newview/llvoicewebrtc.h +++ b/indra/newview/llvoicewebrtc.h @@ -203,7 +203,9 @@ public: void OnConnectionEstablished(const std::string& channelID, const LLUUID& regionID); void OnConnectionShutDown(const std::string &channelID, const LLUUID ®ionID); - void OnConnectionFailure(const std::string &channelID, const LLUUID& regionID); + void OnConnectionFailure(const std::string &channelID, + const LLUUID ®ionID, + LLVoiceClientStatusObserver::EStatusType status_type = LLVoiceClientStatusObserver::ERROR_UNKNOWN); void sendPositionUpdate(bool force); void updateOwnVolume(); @@ -675,6 +677,8 @@ class LLVoiceWebRTCConnection : void breakVoiceConnectionCoro(); + LLVoiceClientStatusObserver::EStatusType mCurrentStatus; + LLUUID mRegionID; LLUUID mViewerSession; std::string mChannelID; |