diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-01-29 21:25:13 -0800 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-08 18:35:21 -0800 |
commit | 02423047646cfc7d410e223611033d488f1c26b0 (patch) | |
tree | b92da89347cdb51163cf6660d47ca915646f8a29 /indra/newview/llvoicevivox.h | |
parent | 0e6103e3a943c7f7726a93535048c634eb85eefc (diff) |
Treat adhoc/p2p as primary connections
Diffstat (limited to 'indra/newview/llvoicevivox.h')
-rw-r--r-- | indra/newview/llvoicevivox.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/indra/newview/llvoicevivox.h b/indra/newview/llvoicevivox.h index e3ab99c675..bd1f18aec6 100644 --- a/indra/newview/llvoicevivox.h +++ b/indra/newview/llvoicevivox.h @@ -154,17 +154,18 @@ public: /// @name invitations //@{ // start a voice channel with the specified user - virtual void callUser(const LLUUID &uuid); - virtual bool isValidChannel(std::string &channelHandle); - virtual bool answerInvite(std::string &channelHandle); - virtual void declineInvite(std::string &channelHandle); + bool hasP2PInterface() override { return true; } + void callUser(const LLUUID &uuid); + bool isValidChannel(std::string &channelHandle) override; + bool answerInvite(std::string &channelHandle) override; + void declineInvite(std::string &channelHandle) override; //@} ///////////////////////// /// @name Volume/gain //@{ - virtual void setVoiceVolume(F32 volume); - virtual void setMicGain(F32 volume); + void setVoiceVolume(F32 volume) override; + void setMicGain(F32 volume) override; //@} ///////////////////////// |