码迷,mamicode.com
首页 >  
搜索关键字:send    ( 4884个结果
ssh自动输入密码脚本 切换目录脚本
利用expect的,首先查看expect,命令:which expect#!/usr/bin/expect -fspawn ssh 用户名@ip地址expect "assword:"send "password\r"interact自动输入密码,切换目录#!/usr/bin/expect -fspa...
分类:其他好文   时间:2014-08-04 10:37:46    阅读次数:319
ZOJ 1655 Transport Goods
The HERO country is attacked by other country. The intruder is attacking the capital so other cities must send supports to the capital. There are some roads between the cities and the goods must be tr...
分类:其他好文   时间:2014-08-03 18:06:55    阅读次数:319
shell telnet 路由器
#!/usr/bin/expect -fspawn telnet 172.16.1.80expect "login" { send "admin\n" expect { "Password" { send "admin\n" } ...
分类:Web程序   时间:2014-08-02 20:51:24    阅读次数:269
readystate
在《Pragmatic Ajax A Web 2.0 Primer 》中对readyStae状态的介绍,摘译如下:0: (Uninitialized) the send( ) method has not yet been invoked.1: (Loading) the send( ) metho...
分类:其他好文   时间:2014-08-02 12:20:23    阅读次数:219
Oracle 11g 环境下,利用utl_smtp创建发送邮件的存储过程
网上太多发邮件储存过程,我就不转发了,弄个简单的作为示例; create or replace procedure Send_mail(mail_body varchar2) is smtp_conn utl_smtp.connection; user_name varchar2(20) := utl_raw.cast_to_varchar2(utl_encode.base64_...
分类:数据库   时间:2014-08-01 20:00:12    阅读次数:384
send,recv,sendto,recvfrom
send函数 int send( SOCKET s, const char FAR *buf, int len, int flags ); 不论是客户还是server应用程序都用send函数来向TCP连接的还有一端发送数据。客户程序一般用send函数向server发送请求,而server则通经常使用...
分类:其他好文   时间:2014-08-01 13:31:51    阅读次数:174
iOS开发——修改指定文件的内存管理状态
今天项目要上线,在Archive时报错:ARC forbids explicit message send of 'release''release' is unavailable: not available in automatic reference counting mode 项目中有几个....
分类:移动开发   时间:2014-08-01 10:47:51    阅读次数:277
ntp 校时程序
//effect:send ntp packet and get the ntp packet ,make the time OK//2014.7.31 is OK//#include #include #include #include #include #include #include #in...
分类:其他好文   时间:2014-07-31 20:18:57    阅读次数:263
socket API详解
send函数intsend(SOCKETs,constcharFAR*buf,intlen,intflags);不论是客户还是服务器应用程序都用send函数来向TCP连接的另一端发送数据。客户程序一般用send函数向服务器发送请求,而服务器则通常用send函数来向客户程序发送应答。该函数的第一个参数...
分类:Windows程序   时间:2014-07-31 19:50:57    阅读次数:320
libevent 入门教程:Echo Server based on libevent(转)
下面假定已经学习过基本的socket编程(socket, bind, listen, accept, connect, recv, send, close),并且对异步/callback有基本的认识。基本的socket编程是阻塞/同步的,每个操作除非已经完成或者出错才会返回,这样对于每一个请求,要使...
分类:其他好文   时间:2014-07-31 16:05:26    阅读次数:349
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!