Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/channel/RemoteForwardingData.java @ 307:071eccdff8ea ganymed
fix java formatting
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 30 Jul 2014 14:16:58 -0700 |
parents | 91a31873c42a |
children |
comparison
equal
deleted
inserted
replaced
305:d2b303406d63 | 307:071eccdff8ea |
---|---|
4 */ | 4 */ |
5 package ch.ethz.ssh2.channel; | 5 package ch.ethz.ssh2.channel; |
6 | 6 |
7 /** | 7 /** |
8 * RemoteForwardingData. Data about a requested remote forwarding. | 8 * RemoteForwardingData. Data about a requested remote forwarding. |
9 * | 9 * |
10 * @author Christian Plattner | 10 * @author Christian Plattner |
11 * @version 2.50, 03/15/10 | 11 * @version 2.50, 03/15/10 |
12 */ | 12 */ |
13 public class RemoteForwardingData | 13 public class RemoteForwardingData { |
14 { | 14 public String bindAddress; |
15 public String bindAddress; | 15 public int bindPort; |
16 public int bindPort; | |
17 | 16 |
18 String targetAddress; | 17 String targetAddress; |
19 int targetPort; | 18 int targetPort; |
20 } | 19 } |