发布时间:2015-04-02 11:35:19
SSL vs TLS vs STARTTLSThere's often quite a bit of confusion around the different terms SSL, TLS and STARTTLS.SSL and TLS both provide a way to encrypt a communication channel between two computers (e.g. your computer and our server). TLS is the successor to SSL an.........【阅读全文】
发布时间:2015-02-03 15:05:23
int inet_aton(const char *cp, struct in_addr *inp);in_addr_t inet_addr(const char *cp);char *inet_ntoa(struct in_addr in);host = gethostbyname(addr);inet_aton() converts the Internet host address cp from the IPv4 num‐ bers-and-dots notation .........【阅读全文】
发布时间:2015-02-03 13:51:39
相信大多数的天朝上网用户,使用网络的方式都是ADSL拨号上网,这样上网每次拨号获取的公网IP一般都是不同的。但是,如果你需要在动态公网IP下搭建一个可以随时随地访问的服务器(比如:建立WEB服务、FTP服务、Email服务、游戏服务器、视频服务、VPN、远程控制、网上电台、 数据动态传输等等 ),那么你就需要使用动态.........【阅读全文】
发布时间:2015-01-09 18:05:12
tcp是面向连接的,在实际应用中通常都需要检测连接是否还可用。如果不可用,可分为:a. 连接的对端正常关闭。b. 连接的对端非正常关闭,这包括对端设备掉电,程序崩溃,网络被中断等。这种情况是不能也无法通知对端的,所以连接会一直存在,浪费国家的资源。 为了回收资源, 必须提供一种检测机制.........【阅读全文】