summaryrefslogtreecommitdiff
path: root/indra/newview/llvoicechannel.h
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2024-03-05 20:55:13 -0800
committerRoxie Linden <roxie@lindenlab.com>2024-03-05 20:55:13 -0800
commit967534352be21b23df96020f40c6449b2501e5b1 (patch)
tree0b45deaf8677e8fed3786bb8d735f543cca67d10 /indra/newview/llvoicechannel.h
parent70044b9d2bbc594f0e8f3154feb2dbce77a7af82 (diff)
more p2p logic fixes
Diffstat (limited to 'indra/newview/llvoicechannel.h')
-rw-r--r--indra/newview/llvoicechannel.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/newview/llvoicechannel.h b/indra/newview/llvoicechannel.h
index 21f6536b60..5e6b769bef 100644
--- a/indra/newview/llvoicechannel.h
+++ b/indra/newview/llvoicechannel.h
@@ -136,7 +136,9 @@ private:
class LLVoiceChannelGroup : public LLVoiceChannel
{
public:
- LLVoiceChannelGroup(const LLUUID& session_id, const std::string& session_name, bool notify_on_first_join, bool hangup_on_last_leave);
+ LLVoiceChannelGroup(const LLUUID& session_id,
+ const std::string& session_name,
+ bool is_p2p);
void handleStatusChange(EStatusType status) override;
void handleError(EStatusType status) override;
@@ -153,8 +155,7 @@ private:
U32 mRetries;
BOOL mIsRetrying;
- bool mHangupOnLastLeave;
- bool mNotifyOnFirstJoin;
+ bool mIsP2P;
};
class LLVoiceChannelProximal : public LLVoiceChannel, public LLSingleton<LLVoiceChannelProximal>