I want to send an image using HttpSendRequest API.
Basically I want to Post the request with some string parameters and after those params I need to send raw image data.
So is it okay to creata a unsigned char buffer of lengh equal to size of strings plus image file size and then doing memcpy of strings and memcpy of image data?