view src/com/trilead/ssh2/transport/KexParameters.java @ 247:1e1bb5468ebe
add host preference for fixed screen size
author
Carl Byington <carl@five-ten-sg.com>
date
Mon, 14 Jul 2014 11:18:24 -0700 (2014-07-14)
parents
0ce5cc452d02
children
line source
+ − package com.trilead.ssh2.transport;
+ −
+ − /**
+ − * KexParameters.
+ − *
+ − * @author Christian Plattner, plattner@trilead.com
+ − * @version $Id: KexParameters.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
+ − */
+ − public class KexParameters {
+ − public byte[] cookie;
+ − public String[] kex_algorithms;
+ − public String[] server_host_key_algorithms;
+ − public String[] encryption_algorithms_client_to_server;
+ − public String[] encryption_algorithms_server_to_client;
+ − public String[] mac_algorithms_client_to_server;
+ − public String[] mac_algorithms_server_to_client;
+ − public String[] compression_algorithms_client_to_server;
+ − public String[] compression_algorithms_server_to_client;
+ − public String[] languages_client_to_server;
+ − public String[] languages_server_to_client;
+ − public boolean first_kex_packet_follows;
+ − public int reserved_field1;
+ − }