File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -12,26 +12,26 @@ import (
12
12
"strings"
13
13
"time"
14
14
15
+ chshare "github.com/alfonso-presa/chisel/share"
15
16
"github.com/gorilla/websocket"
16
17
"github.com/jpillora/backoff"
17
- chshare "github.com/jpillora/chisel/share"
18
18
"golang.org/x/crypto/ssh"
19
19
)
20
20
21
21
//Config represents a client configuration
22
22
type Config struct {
23
- shared * chshare.Config
24
- Fingerprint string
25
- Auth string
26
- KeepAlive time.Duration
27
- MaxRetryCount int
28
- MaxRetryInterval time.Duration
29
- Server string
23
+ shared * chshare.Config
24
+ Fingerprint string
25
+ Auth string
26
+ KeepAlive time.Duration
27
+ MaxRetryCount int
28
+ MaxRetryInterval time.Duration
29
+ Server string
30
30
SkipTlsVerification bool
31
- HTTPProxy string
32
- Remotes []string
33
- HostHeader string
34
- HttpHeaders map [string ]string
31
+ HTTPProxy string
32
+ Remotes []string
33
+ HostHeader string
34
+ HttpHeaders map [string ]string
35
35
}
36
36
37
37
//Client represents a client instance
You can’t perform that action at this time.
0 commit comments