-
Notifications
You must be signed in to change notification settings - Fork 89
/
scp.go
37 lines (30 loc) · 1.37 KB
/
scp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Copyright (c) 2021 Bram Vandenbogaerde
* You may use, distribute or modify this code under the
* terms of the Mozilla Public License 2.0, which is distributed
* along with the source code.
*/
// Package scp.
// Simple scp package to copy files over SSH.
package scp
import (
"time"
"golang.org/x/crypto/ssh"
)
// NewClient returns a new scp.Client with provided host and ssh.clientConfig.
func NewClient(host string, config *ssh.ClientConfig) Client {
return NewConfigurer(host, config).Create()
}
// NewClientWithTimeout returns a new scp.Client with provides host, ssh.ClientConfig and timeout.
// Deprecated: provide meaningful context to each "Copy*" function instead.
func NewClientWithTimeout(host string, config *ssh.ClientConfig, timeout time.Duration) Client {
return NewConfigurer(host, config).Timeout(timeout).Create()
}
// NewClientBySSH returns a new scp.Client using an already existing established SSH connection.
func NewClientBySSH(ssh *ssh.Client) (Client, error) {
return NewConfigurer("", nil).SSHClient(ssh).Create(), nil
}
// NewClientBySSHWithTimeout same as NewClientWithTimeout but uses an existing SSH client.
// Deprecated: provide meaningful context to each "Copy*" function instead.
func NewClientBySSHWithTimeout(ssh *ssh.Client, timeout time.Duration) (Client, error) {
return NewConfigurer("", nil).SSHClient(ssh).Timeout(timeout).Create(), nil
}