142143144145146147148
*/ public SSHClient(Config config) { super(DEFAULT_PORT); this.trans = new TransportImpl(config); this.auth = new UserAuthImpl(trans); this.conn = new ConnectionImpl(trans); }
144145146147148149150