httpリクエストに関するドキュメントを読み、最後にこのヘッダーを作成しました。
int *binary = new int[bufferLength]; // And fill it
std::stringstream out;
out << "POST /push1_pub?id=game HTTP/1.1\r\n";
out << "User-Agent: Lotosoft soccer client\r\n";
out << "Host: localhost\r\n";
out << "Accept: */*\r\n";
out << "Content-Type: application/octet-stream\r\n";
out << "Content-Length: " << bufferLength << "\r\n\r\n";
// Take out string from stream
std::string headers = out.str();
// Length of new array of bytes (headers + binary data + \0)
const int rawLen = headers.size() + bufferLength*sizeof(int) + 1;
char *raw = new char[rawLen];
// Copy headers data into bytes array
strcpy(raw, headers.c_str());
// Apply offset to bytes array and fill another part with binary array of ints
memcpy(raw+headers.size(), binary, bufferLength*sizeof(int));
std::cout << raw << std::endl;
// Send it to socket
if (socket.send(raw, rawLen) == -1)
{
std::cout << "Failed to send headers\n";
}
Postリクエストはsuccessfulを送信しますが、すべてをバイト配列に入力するという私の考えですべてがうまくいくかどうかはわかりません。これは、リクエスト後の本文としてバイナリデータを渡す正しい方法ですか?