基于TCP(面向连接)的Socket编程一、客户端:1、打开一个套接字(Socket);2、发起连接请求(connect);3、如果连接成功,则进行数据交换(read、write、send、recv);4、数据交换完成,关闭连接(shutdown、close);二、服务器端:1、打开一个套接字(So...
1 //[] 2 3 $(function () { 4 $("#send-btn" ).click(function (){ 5 //接受表单的值 6 var username=$('input[name=us...
分类:
其他好文 时间:
2014-08-26 00:15:05
阅读次数:
505
#!/bin/baship="172.16.1.113"command="ssh$ip"expect-c"spawn$command;expect{\"Areyousureyouwanttocontinueconnecting(yes/no)?\"{send\"yes\r\";exp_continue}}"
分类:
其他好文 时间:
2014-08-24 10:23:32
阅读次数:
414
在TCP/IP协议中,TCP协议提供可靠的连接服务,采用三次握手建立一个连接。第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认;第二次握手:服务器收到syn包,必须确认客户的SYN(ack=j+1),同时自己也发送一个SYN包(syn=k)...
分类:
其他好文 时间:
2014-08-23 01:03:39
阅读次数:
204
编程实现双方通信 a.c /************************************************************************* > File Name: send.c > Author: KrisChou > Mail:zhoujx0219@163.c...
分类:
其他好文 时间:
2014-08-22 21:07:59
阅读次数:
242
?将数据发送给其他程序向其他应用程序发送文本数据Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "要分享的文本数据")...
分类:
其他好文 时间:
2014-08-22 19:27:09
阅读次数:
143
Transport Goods
Time Limit: 2 Seconds Memory Limit: 65536 KB
The HERO country is attacked by other country. The intruder is attacking the capital so other cities must send supports to the...
分类:
其他好文 时间:
2014-08-21 21:13:34
阅读次数:
249
mysql> show slave status\G*************************** 1. row *************************** Slave_IO_State: Waiting for master to send even...
分类:
其他好文 时间:
2014-08-21 16:50:44
阅读次数:
180
mootools使用Request.send()数据时刷新整个页面
分类:
其他好文 时间:
2014-08-20 16:05:22
阅读次数:
148
public function send() { $emailTemplate = Mage::getModel('core/email_template'); // Send all emails from corresponding list while (!empty($this->_emai...
分类:
其他好文 时间:
2014-08-19 20:42:15
阅读次数:
184