view src/com/trilead/ssh2/transport/NegotiatedParameters.java @ 105:1b5887a3bb1c
setField() needs to dirty the modified screen positions
author
Carl Byington <carl@five-ten-sg.com>
date
Wed, 18 Jun 2014 10:36:46 -0700 (2014-06-18)
parents
0ce5cc452d02
children
line source
+ − package com.trilead.ssh2.transport;
+ −
+ − /**
+ − * NegotiatedParameters.
+ − *
+ − * @author Christian Plattner, plattner@trilead.com
+ − * @version $Id: NegotiatedParameters.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
+ − */
+ − public class NegotiatedParameters {
+ − public boolean guessOK;
+ − public String kex_algo;
+ − public String server_host_key_algo;
+ − public String enc_algo_client_to_server;
+ − public String enc_algo_server_to_client;
+ − public String mac_algo_client_to_server;
+ − public String mac_algo_server_to_client;
+ − public String comp_algo_client_to_server;
+ − public String comp_algo_server_to_client;
+ − public String lang_client_to_server;
+ − public String lang_server_to_client;
+ − }