• 大小: 1.84M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-22
  • 标签: 串口  源码  工具  t  

资源简介

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\plink\plink.dev
     文件       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\plink\plink.vcxproj.filters
     文件       14451  2019-03-16 12:26  windows\VS2012\plink\plink.vcxproj
     文件        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个文件信息

评论

共有 条评论