12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase.Config
- {
-
-
-
- [Serializable]
- public class ListenerConfig : IListenerConfig
- {
-
-
-
- public ListenerConfig()
- {
- Backlog = 100;
- }
-
-
-
- public string Ip { get; set; }
-
-
-
- public int Port { get; set; }
-
-
-
- public int Backlog { get; set; }
-
-
-
- public string Security { get; set; }
- }
- }
|