1 2 package ch.ethz.ssh2.channel;3 4 /**5 * RemoteForwardingData. Data about a requested remote forwarding.6 * 7 * @author Christian Plattner, plattner@inf.ethz.ch8 * @version $Id: RemoteForwardingData.java,v 1.1 2005/12/07 10:25:48 cplattne Exp $9 */10 public class RemoteForwardingData11 {12 public String bindAddress;13 public int bindPort;14 15 String targetAddress;16 int targetPort;17 }18