diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-09-23 23:55:07 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-09-23 23:55:07 +0200 |
commit | 6b0a89a288d2ca41f93178f60266573eddd0db1e (patch) | |
tree | 7b04be6341e6722680aaaedad09a519f441b7325 /include/libssh/session.h | |
parent | f84ebc2e2770b16b43c62ecb67cf8d4bd1b99d72 (diff) | |
download | libssh-6b0a89a288d2ca41f93178f60266573eddd0db1e.tar.gz libssh-6b0a89a288d2ca41f93178f60266573eddd0db1e.tar.xz libssh-6b0a89a288d2ca41f93178f60266573eddd0db1e.zip |
Get rid of CRYPTO
Diffstat (limited to 'include/libssh/session.h')
-rw-r--r-- | include/libssh/session.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libssh/session.h b/include/libssh/session.h index 04239a5..41b36d0 100644 --- a/include/libssh/session.h +++ b/include/libssh/session.h @@ -68,8 +68,8 @@ struct ssh_session_struct { KEX client_kex; ssh_buffer in_hashbuf; ssh_buffer out_hashbuf; - CRYPTO *current_crypto; - CRYPTO *next_crypto; /* next_crypto is going to be used after a SSH2_MSG_NEWKEYS */ + struct ssh_crypto_struct *current_crypto; + struct ssh_crypto_struct *next_crypto; /* next_crypto is going to be used after a SSH2_MSG_NEWKEYS */ ssh_channel channels; /* linked list of channels */ int maxchannel; |