2022年4月26日
摘要: 服务器代码: #include <unp.h> voidstr_echo(int sockfd){ ssize_t n; char buf[MAXLINE]; again: while ((n = read(sockfd, buf, MAXLINE)) > 0) Writen(sockfd, buf 阅读全文
posted @ 2022-04-26 23:53 atoi 阅读(30) 评论(0) 推荐(0)