linux-cpp-chatroom/Experiment_3/client.h

20 lines
461 B
C
Raw Normal View History

2023-04-03 12:34:07 +08:00
#ifndef CLIENT_H
#define CLIENT_H
#include "global.h"
class client
{
private:
int server_port; // 服务器端口号
string server_ip; // 服务器 ip
int sock; // 与服务器建立连接的套接字描述符
public:
client(int port, string ip);
~client();
void run(); // 启动客户端服务
static void SendMsg(int conn); // 发送线程
static void RecvMsg(int conn); // 接收线程
};
#endif