using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
namespace Hazel
{
///
/// Abstract base class for a for network based connections.
///
///
public abstract class NetworkConnectionListener : ConnectionListener
{
///
/// The local end point the listener is listening for new clients on.
///
public IPEndPoint EndPoint { get; protected set; }
///
/// The IPMode the listener is listening for new clients on.
///
public IPMode IPMode { get; protected set; }
}
}