Linux并发服务器模型二多线程

伪代码实现: typedef struct info
int fd; struct sockaddr_in addr;
{
}Info;
int main()
int i = 0; int fds[200]; // 创建监听 的套接字 int lfd = socket(); // 绑定 bind(lfd, struct sockaddr_in, len) // 监听 listen(lfd, num);
while(1) {
// 等待并接受连接请求 int fds[i] = accept(lfd, &struct sockaddr_in, &len);
// 创建子线程 pthread_create(&threadId, NULL, do_child, (void*)&fds[i]);
// 设置线程分离 pthread_deatch(threadid); i++;
}

}
void* do_child(void* arg)
{
int cfd = (int)arg; // 与客户端通信
// 与客户端通信
recv(cfd, buf, len, 0);
printf(连接过来客户端信息)
send();
}

需要注意:全局变量: 共享1. 如何做数据传输2. 如果线程之间有数据交互 -线程同步 3. 文件描述符的个数

    原文作者:dab61956e53d
    原文地址: https://www.jianshu.com/p/c2da16edf802
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞