发布时间:2015-03-04 22:29:38
5 Linux网络编程基础API1、socket地址API。2、socket基础API。主要定义在sys/socket.h头文件中,包括创建socket、命名socket、监听socket、接收连接、发起连接、读写数据、获取地址信息、检测带外标记,以及读取和设置socket选项。3、网络信息API。Linux提供了一套网络信息API,实现主机名和ip地址之间的转换.........【阅读全文】
发布时间:2015-03-04 22:26:01
/* client.c */#include <sys/types.h>#include <sys/socket.h>#include <sys/ioctl.h>#include <netinet/in.h>#include <netdb.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#define PORT 4321#define BUFFER_SIZE 1024int main(int argc,char *argv[]){struct.........【阅读全文】