摘要: 一、多进程--实现TCP并发通信 实现TCP服务器并发处理任务,可以使用多线程或多进程解决。 父(进)线程负责等待并接受客户端链接。 子(进)线程完成通信。 服务端: #include <stdio.h> #include <arpa/inet.h> #include <unistd.h> #inc 阅读全文
posted @ 2023-12-21 08:21 txwtech 阅读(131) 评论(0) 推荐(0) 编辑