view src/com/trilead/ssh2/channel/X11ServerData.java @ 218:2bdc413623b2

test buffer changed when 5250 keyboard unlocks
author Carl Byington <carl@five-ten-sg.com>
date Tue, 08 Jul 2014 10:35:14 -0700
parents 0ce5cc452d02
children
line wrap: on
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 */
}