📄 globalvar.c
字号:
#include "globalVar.h"char consoleAddr[64] = "127.0.0.1";char servConfFilePath[50] = "./conf/server.conf";int running = 0; /*init : is stop*//*TODO*/int HTTPrun = 0;int DNSrun = 0;int POP3run = 0;int SMTPrun = 0;int DHCPrun = 0;/*TODO:*/char httpLogFilePath[50] = "./log/http.log";char DNSLogFilePath[50] = "./log/dns.log";char POP3LogFilePath[50] = "./log/pop3.log";char SMTPLogFilePath[50] = "./log/smtp.log";char DHCPLogFilePath[50] = "./log/dhcp.log";/*TODO:*/char httpDisplay[1024];char DNSDisplay[1024];char POP3Display[1024];char SMTPDisplay[1024];char DHCPDisplay[1024];/*TODO:*/int HTTPServFd;int DNSServFd;int SMTPServFd;int POP3ServFd;#include "ui.h"int main(int argc,char *argv[]){ ui(argc,argv); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -