Serve listens on the given listener for new SSH connections.
(l net.Listener)
| 118 | |
| 119 | // Serve listens on the given listener for new SSH connections. |
| 120 | func (serv *Server) Serve(l net.Listener) error { |
| 121 | return serv.ssh.Serve(l) |
| 122 | } |
| 123 | |
| 124 | // ListenAndServe listens on the Addr set on the server struct for new SSH |
| 125 | // connections. |
nothing calls this directly
no outgoing calls
no test coverage detected