can't receive UDP packages when wire-shark is off
问题 this is my first post in here. I have an embedded Ethernet PIC32 uC that is sending UDP packages on one specific port to my C# Program on my PC. With C# i want to grab this packages as follows: UdpClient udpClient = new UdpClient( 20011 ); IPEndPoint sender = new IPEndPoint(IPAddress.Any, 0); while (true) { byte[] content = udpClient.Receive(ref sender); } A package looks like this (wireshark): Source: 192.168.1.38 Destination: 192.168.1.44 Protocol: UDP Length: 122 Source port: 1000