in reply to Re^4: Net::Server only sends 128bytes at a time
in thread Net::Server only sends 128bytes at a time

Window size is the maximum amount of data that you can send to the peer. In this case by setting window to 256 your device shows that it ready to receive 256 bytes of data starting from seq=0.

  • Comment on Re^5: Net::Server only sends 128bytes at a time

Replies are listed 'Best First'.
Re^6: Net::Server only sends 128bytes at a time
by alager (Acolyte) on Dec 22, 2009 at 21:17 UTC
    Just closing out this thread.
    Yes it was the window setting. I had set it to a define that seemed correct, RX_BUFFER, but this was for the serial port, and it was indeed 256.
    Setting WIN to it's max, I can now get much larger chunks of data through.

    Thanks,
    Aaron