01: package ch.ethz.ssh2.channel;
02:
03: /**
04: * RemoteForwardingData. Data about a requested remote forwarding.
05: *
06: * @author Christian Plattner, plattner@inf.ethz.ch
07: * @version $Id: RemoteForwardingData.java,v 1.1 2005/12/07 10:25:48 cplattne Exp $
08: */
09: public class RemoteForwardingData {
10: public String bindAddress;
11: public int bindPort;
12:
13: String targetAddress;
14: int targetPort;
15: }
|