<div dir="ltr">Howdy,<div><br></div><div>I understand that data fragmentation happens across TCP packets, and in my case that is what is happening.  The packets I&#39;m seeing usually run around 1450 in length, and are always cut into two packets at the 1400 mark.  This works fine most of the time, since the call to recv is being passed a len of 4096 (via Python&#39;s socket.recv, which I&#39;m assuming is just a wrapper around the system call).  But sometimes I&#39;ll get all of the data I request, even across TCP packet boundaries (so the full 1450 bytes), and other times, it stops at a single packet, at which point I need to make another recv call.<div><br></div><div>This seems to be happening more when the box is under more load (both in a network and CPU sense), but that might be a coincidence.  Are there some internal buffers that I could be monitoring that would correlate with these packets being flushed out quicker?<br></div><div><br></div><div>I&#39;ve changed the underlying code to correctly call recv until all the data has been received, but I am curious as to what&#39;s going on under the hood that made this so sporadic (and a bit of a headache to track down).  Any help would be appreciated!</div><div><br></div><div>Dan</div></div></div>