Commit 609006d0 by xiongziliang

性能优化

parent 28d20955
...@@ -317,7 +317,6 @@ inline bool HttpSession::Handle_Req_GET(int64_t &content_len) { ...@@ -317,7 +317,6 @@ inline bool HttpSession::Handle_Req_GET(int64_t &content_len) {
GET_CONFIG_AND_REGISTER(bool,enableVhost,Http::kEnableVhost); GET_CONFIG_AND_REGISTER(bool,enableVhost,Http::kEnableVhost);
GET_CONFIG_AND_REGISTER(string,rootPath,Http::kRootPath); GET_CONFIG_AND_REGISTER(string,rootPath,Http::kRootPath);
string strFile = enableVhost ? rootPath + "/" + _mediaInfo._vhost + _parser.Url() :rootPath + _parser.Url(); string strFile = enableVhost ? rootPath + "/" + _mediaInfo._vhost + _parser.Url() :rootPath + _parser.Url();
replace(strFile,"//","/");
bool bClose = (strcasecmp(_parser["Connection"].data(),"close") == 0) || ( ++_iReqCnt > reqCnt); bool bClose = (strcasecmp(_parser["Connection"].data(),"close") == 0) || ( ++_iReqCnt > reqCnt);
do{ do{
...@@ -327,7 +326,6 @@ inline bool HttpSession::Handle_Req_GET(int64_t &content_len) { ...@@ -327,7 +326,6 @@ inline bool HttpSession::Handle_Req_GET(int64_t &content_len) {
if(!indexFile.empty()){ if(!indexFile.empty()){
//发现该文件夹下有index文件 //发现该文件夹下有index文件
strFile = strFile + "/" + indexFile; strFile = strFile + "/" + indexFile;
replace(strFile,"//","/");
break; break;
} }
//生成文件夹菜单索引 //生成文件夹菜单索引
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论