游戏后台开发
发布时间:2013-11-15 10:46:36
应该没有人会质疑,现在是一个网络时代了。应该不少程序员在编程中需要考虑多机、局域网、广域网的各种问题。所以网络知识也是避免不了学习的。而且笔者一直觉得TCP/IP网络知识在一个程序员知识体系中必需占有一席之地的。在TCP协议中RST表示复位,用来异常的关闭连接,在TCP的设计中它是不可或缺的。发送RST包关闭连.........【阅读全文】
发布时间:2013-11-14 17:23:29
TCP(Transmission Control Protocol) 传输控制协议TCP是主机对主机层的传输控制协议,提供可靠的连接服务,采用三次握手确认建立一个连接:位码即tcp标志位,有6种标示:SYN(synchronous建立联机) ACK(acknowledgement 确认) PSH(push传送) FIN(finish结束) RST(reset重置) URG(urgent紧急)Sequen.........【阅读全文】
发布时间:2013-11-07 17:40:27
Suppose you are writing a pattern rule to compile a ‘.c’ file into a ‘.o’ file: how do you write the ‘cc’ command so that it operates on the right source file name? You cannot write the name in the recipe, because the name is different each time the implicit rule is applied.What you do i.........【阅读全文】
发布时间:2013-11-07 13:52:59
1、Linux系统用户账号的管理用户账号的管理工作主要包括:用户账号的添加、删减以及修改。添加用户账户即在系统中创建一个新的帐号,然后给它分配用户号、用户组、主目录以及登录SHELL等资源。(注:刚添加的用户帐号是被锁定的,无法使用。)●添加用户帐号使用命令:useradd语法如下:useradd option username.........【阅读全文】