Example #1
0
 internal UDPSession(IPEndPoint iPEndPoint, UdpClient udpServer, CytarUDPQosType qosType, uint ssid)
 {
     QosType          = qosType;
     UdpClient        = udpServer;
     RemoteIPEndPoint = iPEndPoint;
     SSID             = ssid;
 }
Example #2
0
 public UDPSession(IPEndPoint iPEndPoint, UdpClient udpServer, CytarUDPQosType qosType)
 {
     QosType          = qosType;
     UdpClient        = udpServer;
     RemoteIPEndPoint = iPEndPoint;
 }
Example #3
0
 public UDPSession(IPEndPoint iPEndPoint, CytarUDPQosType qosType) : this(iPEndPoint, new UdpClient(), qosType)
 {
 }