17 lines
434 B
Go
17 lines
434 B
Go
|
package ssh
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
// ConnectFunc is a convenience method for returning a function
|
||
|
// that just uses net.Dial to communicate with the remote end that
|
||
|
// is suitable for use with the SSH communicator configuration.
|
||
|
func ConnectFunc(network, addr string) func() (net.Conn, error) {
|
||
|
return func() (net.Conn, error) {
|
||
|
log.Printf("Opening conn for SSH to %s %s", network, addr)
|
||
|
return net.Dial(network, addr)
|
||
|
}
|
||
|
}
|