1 Star 0 Fork 1

ln6833/TinyWebserver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.h 650 Bytes
一键复制 编辑 原始数据 按行查看 历史
ln6833 提交于 2023-02-28 16:17 . first commit
#ifndef CONFIG_H
#define CONFIG_H
#include "webserver.h"
using namespace std;
class Config
{
public:
Config();
~Config(){};
void parse_arg(int argc, char*argv[]);
//端口号
int PORT;
//日志写入方式
int LOGWrite;
//触发组合模式
int TRIGMode;
//listenfd触发模式
int LISTENTrigmode;
//connfd触发模式
int CONNTrigmode;
//优雅关闭链接
int OPT_LINGER;
//数据库连接池数量
int sql_num;
//线程池内的线程数量
int thread_num;
//是否关闭日志
int close_log;
//并发模型选择
int actor_model;
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/ln6833/tiny-webserver.git
git@gitee.com:ln6833/tiny-webserver.git
ln6833
tiny-webserver
TinyWebserver
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385