[BACK]Return to kex.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/kex.h between version 1.112 and 1.113

version 1.112, 2020/12/29 00:59:15 version 1.113, 2021/01/27 10:05:28
Line 125 
Line 125 
 struct ssh;  struct ssh;
   
 struct kex {  struct kex {
         u_char  *session_id;  
         size_t  session_id_len;  
         struct newkeys  *newkeys[MODE_MAX];          struct newkeys  *newkeys[MODE_MAX];
         u_int   we_need;          u_int   we_need;
         u_int   dh_need;          u_int   dh_need;
Line 142 
Line 140 
         struct sshbuf *peer;          struct sshbuf *peer;
         struct sshbuf *client_version;          struct sshbuf *client_version;
         struct sshbuf *server_version;          struct sshbuf *server_version;
           struct sshbuf *session_id;
         sig_atomic_t done;          sig_atomic_t done;
         u_int   flags;          u_int   flags;
         int     hash_alg;          int     hash_alg;

Legend:
Removed from v.1.112  
changed lines
  Added in v.1.113