KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > ssh2 > channel > RemoteForwardingData


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.ch
8  * @version $Id: RemoteForwardingData.java,v 1.1 2005/12/07 10:25:48 cplattne Exp $
9  */

10 public class RemoteForwardingData
11 {
12     public String JavaDoc bindAddress;
13     public int bindPort;
14
15     String JavaDoc targetAddress;
16     int targetPort;
17 }
18
Popular Tags