Hello,
I am using tm4c129.
In my project, I am getting a POST request with body (data of 264 bytes), over TCP protocol.
The structure of the request looks like this (When I get it(:

The request starts with POST /command?token......EndOfGet HTTP / 1.1. then there are headers and at the end, there is the data (264 bytes).
When this request is sent to me several times, it is received differently at certain times - the request contains only the header and not the data.
I guess what happens is that the request is divided into two segments, the first contains the header and the second contains the data, I saw in Wireshark that the request is divided into two:

How do I get the whole request together (as can be seen in the picture)?
Are there any settings in TCP that I need to change?
Anyway, I would love to an example of getting large data via HTTP.
Thanks,
Oshrit