using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SuperSocket.SocketBase.Config
{
///
/// Listener configuration model
///
[Serializable]
public class ListenerConfig : IListenerConfig
{
///
/// Initializes a new instance of the class.
///
public ListenerConfig()
{
Backlog = 100;
}
///
/// Gets the ip of listener
///
public string Ip { get; set; }
///
/// Gets the port of listener
///
public int Port { get; set; }
///
/// Gets the backlog.
///
public int Backlog { get; set; }
///
/// Gets/sets the security option, None/Default/Tls/Ssl/...
///
public string Security { get; set; }
}
}