共1篇相关文章
前几天在看apue第16章关于socket的例子,就是一个非常典型的socket服务器,关键代码如下: 1 void serve (int sockfd) 2 { 3 int ret; 4 int clfd; 5 int status; 6...