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