| 17 | ) |
| 18 | |
| 19 | type TelnetSession struct { |
| 20 | sync.Mutex |
| 21 | host string |
| 22 | client *telnet.Conn |
| 23 | timeouts core.Timeouts |
| 24 | } |
| 25 | |
| 26 | func NewTelnet(sh models.Shell, timeouts core.Timeouts) (error, Session) { |
| 27 | var err error |
nothing calls this directly
no outgoing calls
no test coverage detected