Reply method for sshRequest to satisfy the tunnelssh.SSHRequest interface
(success bool, message []byte)
| 371 | |
| 372 | // Reply method for sshRequest to satisfy the tunnelssh.SSHRequest interface |
| 373 | func (sr *sshRequest) Reply(success bool, message []byte) error { |
| 374 | return sr.request.Reply(success, message) |
| 375 | } |
| 376 | |
| 377 | // convertRequests function |
| 378 | func convertRequests(reqs <-chan *ssh.Request) <-chan tunnelssh.SSHRequest { |
no outgoing calls