Hi Aaron
Frame 157 shows the board sending a SYN (TCP connection request) to address 76.191.255.220. Here the transmitter is advertising a window size of 256 bytes. The same is true in all subsequent TCP frames sent.
This means that the largest frame that the server can send back is 256 bytes in size. Presumably the PC decides to play safe and only send half of that length.
This size is configured when the connection is attempted:
extern USOCKET fnTCP_Connect(USOCKET TCP_socket, unsigned char *RemoteIP, unsigned short usRemotePort, unsigned short usOurPort, unsigned short usMaxWindow);
If usMaxWindow is 0 it defaults to TCP_MAX_WINDOW_SIZE (about 1400 bytes), otherwise the value which is passed is used.
The parameter is generally left as 0 (default) for simple TCP sockets but can be used to control the reception flow in buffered TCP cases (eg. when building an RS232<->TCP converter it can reflect the remaining space in the UART output buffer and thus ensures flow control operation through the complete system.
In your case check whether this value is being set as expected.
Regards
Mark