-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListenerInfo.cs
40 lines (37 loc) · 929 Bytes
/
ListenerInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Security.Authentication;
namespace SuperSocket.SocketBase
{
/// <summary>
/// Listener inforamtion
/// </summary>
[Serializable]
public class ListenerInfo
{
/// <summary>
/// Gets or sets the listen endpoint.
/// </summary>
/// <value>
/// The end point.
/// </value>
public IPEndPoint EndPoint { get; set; }
/// <summary>
/// Gets or sets the listen backlog.
/// </summary>
/// <value>
/// The back log.
/// </value>
public int BackLog { get; set; }
/// <summary>
/// Gets or sets the security protocol.
/// </summary>
/// <value>
/// The security.
/// </value>
public SslProtocols Security { get; set; }
}
}