Commit 97157870 by xiongziliang

bug fixed

parent 13221ad7
...@@ -544,6 +544,8 @@ void HttpSession::sendResponse(int code, ...@@ -544,6 +544,8 @@ void HttpSession::sendResponse(int code,
string str; string str;
str.reserve(256); str.reserve(256);
str += "HTTP/1.1 " ; str += "HTTP/1.1 " ;
str += to_string(code);
str += ' ';
str += getHttpStatusMessage(code) ; str += getHttpStatusMessage(code) ;
str += "\r\n"; str += "\r\n";
for (auto &pr : header) { for (auto &pr : header) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论