diff options
Diffstat (limited to '')
6 files changed, 66 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs b/Common/OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs new file mode 100644 index 0000000..1569cb2 --- /dev/null +++ b/Common/OpenSim.Framework/Interfaces/Remoting/IGridServerHost.cs | |||
@@ -0,0 +1,12 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Interfaces | ||
6 | { | ||
7 | public interface IGridServerHost | ||
8 | { | ||
9 | void ConnectSim(string name); | ||
10 | string RequestSimURL(uint regionHandle); | ||
11 | } | ||
12 | } | ||
diff --git a/Common/OpenSim.Framework/Interfaces/Remoting/IProxyServerClient.cs b/Common/OpenSim.Framework/Interfaces/Remoting/IProxyServerClient.cs new file mode 100644 index 0000000..b58bcba --- /dev/null +++ b/Common/OpenSim.Framework/Interfaces/Remoting/IProxyServerClient.cs | |||
@@ -0,0 +1,10 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Interfaces | ||
6 | { | ||
7 | public interface IProxyServerClient | ||
8 | { | ||
9 | } | ||
10 | } | ||
diff --git a/Common/OpenSim.Framework/Interfaces/Remoting/IProxyServerHost.cs b/Common/OpenSim.Framework/Interfaces/Remoting/IProxyServerHost.cs new file mode 100644 index 0000000..381d53b --- /dev/null +++ b/Common/OpenSim.Framework/Interfaces/Remoting/IProxyServerHost.cs | |||
@@ -0,0 +1,10 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Interfaces | ||
6 | { | ||
7 | public interface IProxyServerHost | ||
8 | { | ||
9 | } | ||
10 | } | ||
diff --git a/Common/OpenSim.Framework/Interfaces/Remoting/IRegionGridClient.cs b/Common/OpenSim.Framework/Interfaces/Remoting/IRegionGridClient.cs new file mode 100644 index 0000000..7f8ecaf --- /dev/null +++ b/Common/OpenSim.Framework/Interfaces/Remoting/IRegionGridClient.cs | |||
@@ -0,0 +1,11 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Interfaces | ||
6 | { | ||
7 | public interface IRegionGridClient | ||
8 | { | ||
9 | bool ExpectUser(string toRegionID, string name); | ||
10 | } | ||
11 | } | ||
diff --git a/Common/OpenSim.Framework/Interfaces/Remoting/IRegionSimHost.cs b/Common/OpenSim.Framework/Interfaces/Remoting/IRegionSimHost.cs new file mode 100644 index 0000000..c22fe29 --- /dev/null +++ b/Common/OpenSim.Framework/Interfaces/Remoting/IRegionSimHost.cs | |||
@@ -0,0 +1,12 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Interfaces | ||
6 | { | ||
7 | public interface IRegionSimHost | ||
8 | { | ||
9 | bool ExpectUser(string name); | ||
10 | bool AgentCrossing(string name); | ||
11 | } | ||
12 | } | ||
diff --git a/Common/OpenSim.Framework/Interfaces/Remoting/RegionGridClientBase.cs b/Common/OpenSim.Framework/Interfaces/Remoting/RegionGridClientBase.cs new file mode 100644 index 0000000..28b3128 --- /dev/null +++ b/Common/OpenSim.Framework/Interfaces/Remoting/RegionGridClientBase.cs | |||
@@ -0,0 +1,11 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.Interfaces | ||
6 | { | ||
7 | public abstract class RegionGridClientBase :IRegionGridClient | ||
8 | { | ||
9 | public abstract bool ExpectUser(string toRegionID, string name); | ||
10 | } | ||
11 | } | ||