Jesper Glintborg
Results
2
issues of
Jesper Glintborg
@somdoron is this expected? Below code throws excetion. static void Main(string[] args) { var s = AsyncSocket.Create(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); s.Bind(IPAddress.Parse("127.0.0.1"), 27000); var c = AsyncSocket.Create(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); c.Connect(IPAddress.Parse("127.0.0.1"), 27000); }...