代码拉取完成,页面将自动刷新
同步操作将从 xiaozhuai/efserv 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/**
* @author : xiaozhuai
* @date : 17/3/19
*/
#ifndef EFSERV_RESPONSE_H
#define EFSERV_RESPONSE_H
#include <string>
#include <sys/socket.h>
#include "ServEnv.h"
#include "FileHandler.h"
#include "version.h"
#include "StringUtils.h"
#include "AccessRule.h"
class Response {
public:
static void loadTpl();
private:
static string dir_indexs_html;
static string err_html;
public:
static void respondErr(int fd, int status_code);
static void respondIndexs(int fd, vector<FileHandler> files, string url);
static void respondHeader(int fd, string mimetype, off_t content_length);
static void respondContent(int fd, const char* content, size_t length);
static void respondRedirection(int fd, int status_code, string location);
private:
static inline void header(int fd, string line){
string tmp = line+"\r\n";
send(fd, tmp.c_str(), tmp.length(), 0);
}
static inline void header(int fd, string key, string value){
string tmp = key+": "+value+"\r\n";
send(fd, tmp.c_str(), tmp.length(), 0);
}
static inline void header_end(int fd){
header(fd, "Server", HEADER_SERVER);
header(fd, "X-Powered-By", HEADER_SERVER);
header(fd, "Connection", "keep-alive");
header(fd, "Keep-Alive", "timeout="+to_string(MAX_KEEP_ALIVE_TIME));
send(fd, "\r\n", 2, 0);
}
};
#endif //EFSERV_RESPONSE_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。