一、TCP握手协议 在TCP/IP协议中,TCP协议提供可靠的连接服务,采用三次握手建立一个连接。 第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认; 第二次握手:服务器收到syn包,必须确认客户的SYN(ack=j+1),同时自己也发送一...
分类:
其他好文 时间:
2014-07-10 14:25:10
阅读次数:
235
1. install lrzsz $ sudo apt-get install lrzsz 2. If you want to send file from your pc to pi, just drag it to the Xshell window. Or, input $ sudo rz t...
分类:
其他好文 时间:
2014-07-10 14:21:55
阅读次数:
421
转自:http://blog.chinaunix.net/uid-24517549-id-4044877.html首先socket在默认情况下是阻塞状态的,这就使得发送以及接收操作处于阻塞的状态,即调用不会立即返回,而是进入睡眠等待操作完成。一.发送选用send(这里特指TCP)以及sendto(这...
分类:
其他好文 时间:
2014-07-10 00:03:03
阅读次数:
241
Python服务器开发三:Socketsocket是操作系统中I/O的延续,它可以使进程和机器之间的通信成为可能。socket可以看成一个标准的文件描述符。不同的是文件需要用open()函数打开,而socket用socket()函数建立.recv()、send()函数和read()、write()函...
分类:
编程语言 时间:
2014-07-09 23:37:56
阅读次数:
284
#!usr/bin/perluse Statistics::R;#---new函数my $r=Statistics::R->new();#---send,read函数$r->send(qq'a=c(1,2,3,4); b=mean(a);\n c=sqrt(b) ;print(c)');my $re...
分类:
其他好文 时间:
2014-07-07 17:41:16
阅读次数:
580
关于session_start()这个问题,其实网上很多解决的方法,论坛也好多人回答这类的问题, 现在的状况是依然有警告提示Warning:session_start() [function.session-start]: Cannot send session cookie - headers a...
分类:
其他好文 时间:
2014-07-01 21:33:30
阅读次数:
325
A press release is a great way to create publicity for your cleaning business. Send out press releases to announce a newsworthy event about you, your ...
分类:
其他好文 时间:
2014-06-30 23:22:37
阅读次数:
275
URL 编码:CFURLCreateStringByAddingPercentEscapes If you have tried to send any information using a GET web request, you would have come cross an annoyin...
分类:
其他好文 时间:
2014-06-28 10:00:37
阅读次数:
219
一.单项选择题(10题,每题2分,共20分)1、如果在android应用程序中需要发送短信,那么需要在AndroidManifest.xml文件中增加什么样的权限()A.发送短信,无需配置权限B.permission.SMSC.android.permission.RECEIVE_SMSD.android.permission.SEND_SMS2、对一些资源以及状态的操..
分类:
其他好文 时间:
2014-06-27 06:40:20
阅读次数:
420
在使用时,先引用 using System.Net.NetworkInformation;Ping pingSender = new Ping(); PingReply reply = pingSender.Send("127.0.0.1"); if (r...
分类:
其他好文 时间:
2014-06-26 18:24:46
阅读次数:
213