加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
common.h 370 Bytes
一键复制 编辑 原始数据 按行查看 历史
wusong 提交于 2021-01-16 16:06 . single thread select
#ifndef __COMMON_H_
#define __COMMON_H_
#define SPORT 8888
#define MAX_CLIENT_Q 10
#define SERVERIP "127.0.0.1"
#define MAX_EPOLL_EV 1000
#define EXIT_SUCCESS 0
#define EXIT_ERROR -1
#define ADM_NAME "admin"
#define max(a,b) \
({ __typeof__ (a) _a = (a); \
__typeof__ (b) _b = (b); \
_a > _b ? _a : _b; })
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化