As the title says I have a problem with UDP in C#. I\'m trying to build a library for the rcon protocol of the game DayZ.
My problem is that I dont receive every pac
This is usually because you are not consuming your datagrams fast enough, so in-kernel socket buffer gets full and the network stack starts dropping newly arriving packets. Some points: