资源简介
putty 串口工具源码
代码片段和文件信息
/*
* SSH agent forwarding.
*/
#include
#include
#include
#include “putty.h“
#include “ssh.h“
#include “pageant.h“
#include “sshchan.h“
typedef struct agentf {
SshChannel *c;
bufchain inbuffer;
agent_pending_query *pending;
bool input_wanted;
bool rcvd_eof;
Channel chan;
} agentf;
static void agentf_got_response(agentf *af void *reply int replylen)
{
af->pending = NULL;
if (!reply) {
/* The real agent didn‘t send any kind of reply at all for
* some reason so fake an SSH_AGENT_FAILURE. */
reply = “\0\0\0\1\5“;
replylen = 5;
}
sshfwd_write(af->c reply replylen);
}
static void agentf_callback(void *vctx void *reply int replylen);
static void agentf_try_forward(agentf *af)
{
size_t datalen length;
strbuf *message;
unsigned char msglen[4];
void *reply;
int replylen;
/*
* Don‘t try to paralleli
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20300 2019-03-16 12:26 Makefile.am
文件 77 2019-03-16 12:26 empty.h
文件 1811 2019-03-16 12:26 licence.h
文件 38842 2019-03-16 12:26 x11fwd.c
文件 8343 2019-03-16 12:26 windows\DEVCPP\testcrypt\testcrypt.dev
文件 14436 2019-03-16 12:26 windows\DEVCPP\puttytel\puttytel.dev
文件 12546 2019-03-16 12:26 windows\DEVCPP\puttygen\puttygen.dev
文件 25497 2019-03-16 12:26 windows\DEVCPP\putty\putty.dev
文件 22840 2019-03-16 12:26 windows\DEVCPP\psftp\psftp.dev
文件 22831 2019-03-16 12:26 windows\DEVCPP\pscp\pscp.dev
文件 23463 2019-03-16 12:26 windows\DEVCPP\pli
文件 10694 2019-03-16 12:26 windows\DEVCPP\pageant\pageant.dev
文件 84042 2019-03-16 12:26 windows\Makefile.lcc
文件 5342 2019-03-16 12:26 windows\VS2012\testcrypt\testcrypt.vcxproj.filters
文件 9268 2019-03-16 12:26 windows\VS2012\testcrypt\testcrypt.vcxproj
文件 9154 2019-03-16 12:26 windows\VS2012\puttytel\puttytel.vcxproj.filters
文件 11570 2019-03-16 12:26 windows\VS2012\puttytel\puttytel.vcxproj
文件 8003 2019-03-16 12:26 windows\VS2012\puttygen\puttygen.vcxproj.filters
文件 11037 2019-03-16 12:26 windows\VS2012\puttygen\puttygen.vcxproj
文件 16333 2019-03-16 12:26 windows\VS2012\putty\putty.vcxproj.filters
文件 15056 2019-03-16 12:26 windows\VS2012\putty\putty.vcxproj
文件 14670 2019-03-16 12:26 windows\VS2012\psftp\psftp.vcxproj.filters
文件 14266 2019-03-16 12:26 windows\VS2012\psftp\psftp.vcxproj
文件 14668 2019-03-16 12:26 windows\VS2012\pscp\pscp.vcxproj.filters
文件 14257 2019-03-16 12:26 windows\VS2012\pscp\pscp.vcxproj
文件 15059 2019-03-16 12:26 windows\VS2012\pli
文件 14451 2019-03-16 12:26 windows\VS2012\pli
文件 6821 2019-03-16 12:26 windows\VS2012\pageant\pageant.vcxproj.filters
文件 10454 2019-03-16 12:26 windows\VS2012\pageant\pageant.vcxproj
文件 4316 2019-03-16 12:26 windows\VS2012\putty.sln
文件 5342 2019-03-16 12:26 windows\VS2010\testcrypt\testcrypt.vcxproj.filters
............此处省略417个文件信息
相关资源
- Windows核心编程源码
- windows 串口升级工具(c++源码)
- ntmedsys.sys(c++源码)
- 简单实用的easyhook 源码
- 自制操作系统.docx(附源码地址)
- 暴力巡警文件删除工具
- 获取窗口控件工具(inspinst.exe)
- com 原理应用源码
- W5500通信软件包 源码
- Ftp客户端连接服务器(源码+可执行文
- libevent源码深度剖析
- 200种加密算法(源码)
- iCord-屏幕录制(c++源码)
- CTP-Api行情Demo版源码
- 多人聊天室c++源码(附服务器端以及
- c++ 不打开图档可替换字符串源码
- GDAL1111源码
- 真彩工具条
- 菜单实现加单计算器(个人原创c++源
- AD9854 入门级
- C++实战源码-小蛇长得快(入门级602)
- C++实战源码-文字水平滚动(入门级
- C++实战源码-替换指定的字符串(入门
- C++实战源码-小球称重(入门级046)
- C++实战源码-新同学的年龄(入门级
- C++实战源码-向数组中赋值(入门级
- C++实战源码-用#打印三角形(入门级
- C++实战源码-统计学生成绩分布(入门
- C++实战源码-向数组中插入元素(入门
- C++实战源码-用指向函数的指针比较大
评论
共有 条评论