首页 > TAG信息列表 > unix网络编程

网络编程:Socket的使用和方法

TCPTCP(Transmission Control Protocol 传输控制协议)是一种面向连接的、可靠的、基于字节流的传输层通信协议,由IETF的RFC 793定义。在简化的计算机网络OSI模型中,它完成第四层传输层所指定的功能,用户数据报协议(UDP)是同一层内 另一个重要的传输协议。在因特网协议族(Internet protocol

Unix网络编程-使用select执行TCP和UDP业务

/** * @file server-select-TCP-UDP.c * 使用select同时处理TCP和UDP */#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <sys/types.h>#include <sys/socket.h>#include <sys/select.h>#include <arpa/inet.h>#includ