摘要: const char* strstr(const char *str, const char* substr){ int i, j, temp; for (i = 0; str[i] != '\0'; i++) { j = 0; temp = i; //... 阅读全文
posted @ 2015-07-19 19:45 从此寂静无声 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1.TCP/IP协议的体系结构包含四层:应用层(负责应用程序的网络服务,通过端口号识别各个不同的进程)-》传输层(传输控制层协议TCP、用户数据报协议UDP、互联网控制消息协议ICMP)-》网络层-》网络接口层(负责将二进制流转换成数据帧,并进行数据帧的发送和接收)-》硬件层。2.服务器是指能在网络... 阅读全文
posted @ 2015-07-19 19:31 从此寂静无声 阅读(169) 评论(0) 推荐(0) 编辑