aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IVoiceModule.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IVoiceModule.cs (renamed from OpenSim/Framework/Communications/IHyperlink.cs)21
1 files changed, 14 insertions, 7 deletions
diff --git a/OpenSim/Framework/Communications/IHyperlink.cs b/OpenSim/Region/Framework/Interfaces/IVoiceModule.cs
index 5057386..2e555fa 100644
--- a/OpenSim/Framework/Communications/IHyperlink.cs
+++ b/OpenSim/Region/Framework/Interfaces/IVoiceModule.cs
@@ -25,14 +25,21 @@
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28namespace OpenSim.Framework.Communications 28
29using System.IO;
30using OpenMetaverse;
31
32namespace OpenSim.Region.Framework.Interfaces
29{ 33{
30 public interface IHyperlink 34 public interface IVoiceModule
31 { 35 {
32 bool IsHyperlinkRegion(ulong handle); 36
33 RegionInfo GetHyperlinkRegion(ulong handle); 37 /// <summary>
34 ulong FindRegionHandle(ulong handle); 38 /// Set the SIP url to be used by a parcel, this will allow manual setting of a SIP address
35 bool SendUserInformation(RegionInfo region, AgentCircuitData aCircuit); 39 /// for a particular piece of land, allowing region owners to use preconfigured SIP conference channels.
36 void AdjustUserInformation(AgentCircuitData aCircuit); 40 /// This is used by osSetParcelSIPAddress
41 /// </summary>
42 void setLandSIPAddress(string SIPAddress,UUID GlobalID);
43
37 } 44 }
38} 45}