| 14 | ) |
| 15 | |
| 16 | type sshChannelHandler struct { |
| 17 | lock *sync.Mutex |
| 18 | backingChannel ssh.Channel |
| 19 | connectionHandler *sshConnectionHandler |
| 20 | requests <-chan *ssh.Request |
| 21 | session sshserver.SessionChannel |
| 22 | started bool |
| 23 | logger log.Logger |
| 24 | done chan struct{} |
| 25 | exited bool |
| 26 | ssh *sshConnectionHandler |
| 27 | } |
| 28 | |
| 29 | func (s *sshChannelHandler) handleBackendClientRequests( |
| 30 | requests <-chan *ssh.Request, |
nothing calls this directly
no outgoing calls
no test coverage detected