aboutsummaryrefslogtreecommitdiffstats
path: root/sshlib/src/main/java/com/trilead/ssh2/channel/X11ServerData.java
blob: 041f9cba4d71304a3d88766b813c37f7a229e627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.trilead.ssh2.channel;

/**
 * X11ServerData. Data regarding an x11 forwarding target.
 *
 * @author Christian Plattner, plattner@trilead.com
 * @version $Id: X11ServerData.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
 * 
 */
public class X11ServerData
{
	public String hostname;
	public int port;
	public byte[] x11_magic_cookie; /* not the remote (fake) one, the local (real) one */
}