linux-cpp-chatroom/Experiment_2/test_server.cpp

7 lines
188 B
C++
Raw Permalink Normal View History

2023-04-01 23:52:01 +08:00
#include "server.h"
int main()
{
server serv(8023, "127.0.0.1"); // 创建实例,传入端口号和 ip 作为构造函数参数
serv.run(); // 启动服务
}