blob: b80dea5bed357b89f57826d59208cdf308a59093 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Collections.Generic;
using System.Net;
using System.Text;
namespace OpenSim.Framework.Client
{
public interface IClientIPEndpoint
{
IPAddress EndPoint { get; }
}
}
|