Mercurial > 510Connectbot
view app/src/main/java/ch/ethz/ssh2/channel/RemoteAcceptThread.java @ 476:186d340afd3b
add fg/bg color setting to global:// section of deployment.connections file
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sun, 20 Oct 2019 14:19:17 -0700 |
parents | d29cce60f393 |
children |
line wrap: on
line source
/* * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. * Please refer to the LICENSE.txt for licensing details. */ package ch.ethz.ssh2.channel; import java.io.IOException; import java.net.Socket; import ch.ethz.ssh2.log.Logger; /** * RemoteAcceptThread. * * @author Christian Plattner * @version $Id: RemoteAcceptThread.java 119 2014-04-12 20:30:58Z dkocher@sudo.ch $ */ public class RemoteAcceptThread extends Thread { private static final Logger log = Logger.getLogger(RemoteAcceptThread.class); Channel c; String remoteConnectedAddress; int remoteConnectedPort; String remoteOriginatorAddress; int remoteOriginatorPort; String targetAddress; int targetPort; Socket s; public RemoteAcceptThread(Channel c, String remoteConnectedAddress, int remoteConnectedPort, String remoteOriginatorAddress, int remoteOriginatorPort, String targetAddress, int targetPort) { this.c = c; this.remoteConnectedAddress = remoteConnectedAddress; this.remoteConnectedPort = remoteConnectedPort; this.remoteOriginatorAddress = remoteOriginatorAddress; this.remoteOriginatorPort = remoteOriginatorPort; this.targetAddress = targetAddress; this.targetPort = targetPort; log.debug("RemoteAcceptThread: " + remoteConnectedAddress + "/" + remoteConnectedPort + ", R: " + remoteOriginatorAddress + "/" + remoteOriginatorPort); } @Override public void run() { try { c.cm.sendOpenConfirmation(c); s = new Socket(targetAddress, targetPort); StreamForwarder r2l = new StreamForwarder(c, null, null, c.getStdoutStream(), s.getOutputStream(), "RemoteToLocal"); StreamForwarder l2r = new StreamForwarder(c, null, null, s.getInputStream(), c.getStdinStream(), "LocalToRemote"); /* No need to start two threads, one can be executed in the current thread */ r2l.setDaemon(true); r2l.start(); l2r.run(); while (r2l.isAlive()) { try { r2l.join(); } catch (InterruptedException ignored) { } } /* If the channel is already closed, then this is a no-op */ c.cm.closeChannel(c, "EOF on both streams reached.", true); s.close(); } catch (IOException e) { log.warning("IOException in proxy code: " + e.getMessage()); try { c.cm.closeChannel(c, e, true); } catch (IOException ignored) { } try { if (s != null) s.close(); } catch (IOException ignored) { } } } }