我正在尝试从HTTP流中提取图像。除了libpcap
以外,我需要使用C ++而不使用其他库来捕获数据包。这就是我在做的事情:
if ((tcp->th_flags & TH_ACK) != 0) {
i = tcp->th_ack;
const char *payload = (const char *) (packet + SIZE_ETHERNET + size_ip + size_tcp);
size_payload = ntohs(ip->ip_len) - (size_ip + size_tcp);
std::string temp(payload);
dict.insert(std::pair<u_int,std::string>(tcp->th_ack,temp));
}
然后我连接所有具有相同ACK号的数据包:
std::string ss;
for(itt=dict.begin(); itt!= dict.end(); ++itt) {
std::string temp((*itt).second);
ss.append(temp);
}
std::ofstream file;
file.open("image.jpg", std::ios::out | std::ios::binary)
file << ss;
file.close();
现在,当我将ss
写入文件时,文件的大小远小于传输的图像。这是写二进制文件的正确方法吗?
我想在C ++中做this
答案 0 :(得分:1)
使用std :: string将在第一个空终止字符处剪切数据(即使std :: string不是以空字符结尾的字符串)。 std :: string的构造函数采用char *并假定以null结尾的字符串。这是一个证据:
char sample [] = {'a', 'b', '\0', 'c', 'd', '\0', 'e'};
std::string ss(sample);
您应该使用std :: vector来存储数据。