session timeout (minute) PtyHandler is what remotecommand expects from a pty
| 28 | |
| 29 | // PtyHandler is what remotecommand expects from a pty |
| 30 | type PtyHandler interface { |
| 31 | io.Reader |
| 32 | io.Writer |
| 33 | remotecommand.TerminalSizeQueue |
| 34 | } |
| 35 | |
| 36 | // TerminalSession implements PtyHandler (using a SockJS connection) |
| 37 | type TerminalSession struct { |
nothing calls this directly
no outgoing calls
no test coverage detected