141142143144145146147148
* @param config {@link Config} instance */ public SSHClient(Config config) { super(DEFAULT_PORT); this.trans = new TransportImpl(config); this.auth = new UserAuthImpl(trans); this.conn = new ConnectionImpl(trans); }
143144145146147148149150