摘要:
功能:实现两个主机之间的局域网聊天实现关键:如何同时处理套接字的输入和标准输入 --- select函数客户端的程序#include "unp.h"void cli_echo(FILE *fp, int sockfd){ int maxfdp1, stdineof; fd_set rset; char buf[1000]; int n; stdineof=0; FD_ZERO(&rset); fo... 阅读全文
摘要:
配置好动态链接库或者静态链接库1,下载UNIX网络编程书的头文件及示例源码unpv13e2 按照readme来编译Execute the following from the src/ directory: ./configure # try to figure out all implementation differences cd lib # buil... 阅读全文