Hi, I’ve got the impression that packets will sometimes not arrive in the original order when activating TCPConnection.EnableNagleAlgorithmForNewConnections = true;
Without setting this option everything seems to work fine.
The packets are all sent over the same TCPConnection.
The Nagle algorithm does not affect packet order, it only affects when a group of packets will be sent. Unless you have a specific use case which requires this to be enabled I highly recommend you leave TCPConnection.EnableNagleAlgorithmForNewConnections = false;