Ai
1 Star 0 Fork 0

moorewqk/sshftp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
types.go 711 Bytes
一键复制 编辑 原始数据 按行查看 历史
moorewqk 提交于 2022-03-09 19:13 +08:00 . add code
package sshftp
import (
"github.com/pkg/sftp"
"golang.org/x/crypto/ssh"
"io"
"time"
)
type PtyInfo struct {
Term string
H int
W int
Modes ssh.TerminalModes
}
type ReadWriteCloser interface {
io.Reader
io.WriteCloser
}
//type SSHClientConfig struct {
// Host string
// User string
// Password string
// Privatekey string
// DialTimeoutSecond int
// MaxDataThroughput uint64
//}
type Config struct {
Username string
Password string
PrivateKey string
Server string
KeyExchanges []string
Timeout time.Duration
}
type Client struct {
config Config
sshClient *ssh.Client
sshSession *SshSession
sftpClient *sftp.Client
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/moorewqk/sshftp.git
git@gitee.com:moorewqk/sshftp.git
moorewqk
sshftp
sshftp
master

搜索帮助