一.状态变迁图 二.time_wait状态 针对time_wait和close_wait有个简单的描述帮助理解: Due to the way TCP/IP works, connections can not be closed immediately. Packets may arrive out of order or be retransmitted after the connection has been closed. CLOSE_WAIT indicates that the r
目录 c++ 网络编程 建立socket 绑定socket 建立连接 监听 服务器端接收 数据发送和接收 面向连接的数据发送 面向连接的数据接收 无连接的数据发送 无连接的数据接收 关闭socket c++ 网络编程 标签(空格分隔): c++ 建立socket int socket(int domain,int type ,int protocol); domain 通常为PF_INET,表示互联网协议(TCP/IP) type 指定了Socket的类型 SOCK_STREAM(TCP),SO