arduino-libraries / ArduinoHttpClient

Arduino HTTP Client library
282 stars 170 forks source link

client.post(/); reassembled TCP segments (wireshark) #78

Closed isosel closed 4 years ago

isosel commented 4 years ago

Hello everyone,

the function client.post("/test", contenttype, data); doesn't work as expected. When I launch an analysis with wireshark, the HTTP request is made of two reassembled TCP segments.

The 1st one contains "POST" (4 bytes) and the 2nd contains the rest of the request.

It doesn't work for my application.

Best regards,

isosel.

sandeepmistry commented 4 years ago

Hi @isosel,

This is expected and won't be changed. It's compliant with the HTTP standard as well.