1、头文件: #include <sys/types.h> /* See NOTES */ #include <sys/socket.h> 1. 2. 2、函数原型: int connect(int sockfd, const struct sockaddr *addr,socklen_t addrlen); 1. TCP客户端通过connect函数与服务端连接,进行通信。 3、函数形参: 3.1、sockfd(客户端自己创建的sock) 3.2、addr(服务...