Browse Subversion Repository
Diff of /trunk/ttssh2/ttxssh/ttxssh.h
Parent Directory
| Revision Log
| Patch
| 74 |
#include "ssh.h" |
#include "ssh.h" |
| 75 |
#include "auth.h" |
#include "auth.h" |
| 76 |
#include "crypt.h" |
#include "crypt.h" |
| 77 |
|
#include "cipher.h" |
| 78 |
|
#include "comp.h" |
| 79 |
|
#include "kex.h" |
| 80 |
|
#include "hostkey.h" |
| 81 |
|
#include "key.h" |
| 82 |
#include "hosts.h" |
#include "hosts.h" |
| 83 |
#include "fwd.h" |
#include "fwd.h" |
| 84 |
|
|
| 273 |
buffer_t *peer_kex; |
buffer_t *peer_kex; |
| 274 |
kex_algorithm kex_type; // KEX algorithm |
kex_algorithm kex_type; // KEX algorithm |
| 275 |
ssh_keytype hostkey_type; |
ssh_keytype hostkey_type; |
| 276 |
const SSH2Cipher *ciphers[MODE_MAX]; |
const struct ssh2cipher *ciphers[MODE_MAX]; |
| 277 |
const SSH2Mac *macs[MODE_MAX]; |
const struct SSH2Mac *macs[MODE_MAX]; |
| 278 |
compression_type ctos_compression; |
compression_type ctos_compression; |
| 279 |
compression_type stoc_compression; |
compression_type stoc_compression; |
| 280 |
int we_need; |
int we_need; |
| 283 |
char *session_id; |
char *session_id; |
| 284 |
int session_id_len; |
int session_id_len; |
| 285 |
SSHKeys ssh2_keys[MODE_MAX]; |
SSHKeys ssh2_keys[MODE_MAX]; |
| 286 |
EVP_CIPHER_CTX *evpcip[MODE_MAX]; |
struct sshcipher_ctx *cc[MODE_MAX]; |
| 287 |
int userauth_success; |
int userauth_success; |
| 288 |
int shell_id; |
int shell_id; |
| 289 |
int session_nego_status; |
int session_nego_status; |
|
|
Legend:
| Removed from v.9048 |
|
| changed lines |
| |
Added in v.9255 |
|
|
|