view src/com/trilead/ssh2/channel/X11ServerData.java @ 120:dcac61b6f2e6
add more 5250 config items
author
Carl Byington <carl@five-ten-sg.com>
date
Wed, 18 Jun 2014 18:57:19 -0700 (2014-06-19)
parents
0ce5cc452d02
children
line source
+ −
+ − 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 */
+ − }