using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperSocket.SocketBase.Config { /// /// The listener configuration interface /// public interface IListenerConfig { /// /// Gets the ip of listener /// string Ip { get; } /// /// Gets the port of listener /// int Port { get; } /// /// Gets the backlog. /// int Backlog { get; } /// /// Gets the security option, None/Default/Tls/Ssl/... /// string Security { get; } } }