| 13 | ) |
| 14 | |
| 15 | type channelWrapper struct { |
| 16 | channel ssh.Channel |
| 17 | logger log.Logger |
| 18 | lock *sync.Mutex |
| 19 | exitSent bool |
| 20 | exitSignalSent bool |
| 21 | closedWrite bool |
| 22 | closed bool |
| 23 | } |
| 24 | |
| 25 | func (c *channelWrapper) Stdin() io.Reader { |
| 26 | if c.channel == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected