binary data
関数で送信したいsend()
機能:
void ssend(const char* data){
send(socket_fd, data, strlen(data), 0);
}
bool readFile(const char* path){
std::ifstream ifile(path);
if(ifile){
if(!ifile.is_open()){
ErrorPage("403");
return true;
}
std::string sLine;
std::string Header = "HTTP/1.1 200 OK\nConnection: Keep-Alive\nKeep-Alive: timeout=5, max=100\nServer: BrcontainerSimpleServer/0.0.1 (Win32) (Whitout Compiler code)\n\n";
ssend(Header.c_str());
while(!ifile.eof()){
getline(ifile, sLine);
cout << "String: " << sLine << endl;
cout << "const char*: " << sLine.c_str() << endl;
ssend(sLine.c_str());
}
return true;
}
return false;
}
テスト:
...
while (1) {
socket_fd = accept(listen_fd, (struct sockaddr *)&client_addr,&client_addr_length);
readFile( httpPath );
recv(socket_fd, request, 32768, 0);
closesocket(socket_fd);
}
...
で変換するbinary string
と.c_str()
データが消えます。この問題を解決するには?
binary data
関数で送信する方法はsend()
?