aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/IClientNetworkServer.cs
blob: f15404c6d63cb9aab4fc08f8db713e621aaebeec (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Net.Sockets;
using OpenSim.Framework;

namespace OpenSim.Region.ClientStack
{
    public interface IClientNetworkServer
    {
        Socket Server { get; }
        bool HandlesRegion(Location x);
    }
}