📄 sip2p.h
字号:
#ifndef SIP2P_H#define SIP2P_H#include <string>#include <map>// Data read from settings file = GLOBAL VARIABLESint s2pServerPort;std::string s2pServerIP;std::string kadcIniFile;bool DEBUG = false;std::map<std::string, std::string> dummyUsers;bool DUMMY_PUBLISH = false;bool DUMMY_FAST_SEARCH = false;// Name of the log filestd::string logFileName = "sip2p.log";// Function definitionsbool readSettings(char* fileName);#endif //SIP2P_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -