(n, addr string)
| 471 | func (sc *secureClient) Conn() ssh.Conn { return sc.client.Conn } |
| 472 | func (sc *secureClient) Wait() error { return sc.client.Wait() } |
| 473 | func (sc *secureClient) Dial(n, addr string) (net.Conn, error) { |
| 474 | return sc.client.Dial(n, addr) |
| 475 | } |
| 476 | func (sc *secureClient) NewSession() (SecureSession, error) { |
| 477 | return sc.client.NewSession() |
| 478 | } |