Hi,
If sending large packets (>1500) should the app. split the message or the NDK stack do this?
Thanks,
HR
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
HR,
Have you seen the discussion of Jumbo (>1500 byte) packet support, and the Jumbo PBM in NDK 2.0 in the NDK user’s guide (http://www.ti.com/lit/ug/spru523g/spru523g.pdf)?
Scott
HR
I believe that without jumbo packet support, trying to send an amount of data that is too large will result in an error on the send call (it will return an error code of
EMSGSIZE).
If you have jumbo packet support enabled, you should be able to just send the large chunk of data. The large packet will be handled for you internally by the jumbo PBM.
Steve