10 2014 档案

TCP三次握手
摘要: 阅读全文

posted @ 2014-10-31 16:11 linyoub 阅读(90) 评论(0) 推荐(0)

OSI
摘要:OSI(Open System Interconnect)定义了网络互连的七层框架OSI层次名称特点数据实现方式协议常用命令与TCP/IP对应关系第七层应用层通过应用程序来完成网络用户的应用需求,如文件传输、收发电子邮件等NA软件TFTP,HTTP,SNMP,FTP,SMTP,DNS,Telnet应... 阅读全文

posted @ 2014-10-31 14:16 linyoub 阅读(132) 评论(0) 推荐(0)

字符串
摘要:char p[][10] = { {"123"}, {"12"}};char *p1 = (char *)p + 1char *p11 = (char *)p + 11则p的内存如下:123\0------12\0-------p[0]p1p[1]p11sizeof(p) = 20 阅读全文

posted @ 2014-10-31 11:04 linyoub 阅读(104) 评论(0) 推荐(0)