diff options
author | Adam Frisby | 2008-05-02 16:41:08 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-02 16:41:08 +0000 |
commit | 29b8c84ceaaeca80bfa9c0bfc8c31e421e39ef71 (patch) | |
tree | 848ce119d9b87bc186c20b08cc604de50a872b31 /OpenSim/Region/ClientStack/IClientNetworkServer.cs | |
parent | * Refactored ClientView into LLClientView. Removed all direct references to U... (diff) | |
download | opensim-SC_OLD-29b8c84ceaaeca80bfa9c0bfc8c31e421e39ef71.zip opensim-SC_OLD-29b8c84ceaaeca80bfa9c0bfc8c31e421e39ef71.tar.gz opensim-SC_OLD-29b8c84ceaaeca80bfa9c0bfc8c31e421e39ef71.tar.bz2 opensim-SC_OLD-29b8c84ceaaeca80bfa9c0bfc8c31e421e39ef71.tar.xz |
* Commit 2/3 - Please dont attempt to update to this revision until all 3 are in.
Diffstat (limited to 'OpenSim/Region/ClientStack/IClientNetworkServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/IClientNetworkServer.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/IClientNetworkServer.cs b/OpenSim/Region/ClientStack/IClientNetworkServer.cs new file mode 100644 index 0000000..f15404c --- /dev/null +++ b/OpenSim/Region/ClientStack/IClientNetworkServer.cs | |||
@@ -0,0 +1,11 @@ | |||
1 | using System.Net.Sockets; | ||
2 | using OpenSim.Framework; | ||
3 | |||
4 | namespace OpenSim.Region.ClientStack | ||
5 | { | ||
6 | public interface IClientNetworkServer | ||
7 | { | ||
8 | Socket Server { get; } | ||
9 | bool HandlesRegion(Location x); | ||
10 | } | ||
11 | } \ No newline at end of file | ||