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

Diff for /src/usr.bin/ssh/compat.h between version 1.52 and 1.53

version 1.52, 2018/07/03 11:39:54 version 1.53, 2018/07/31 03:07:24
Line 65 
Line 65 
   
 u_int    compat_datafellows(const char *);  u_int    compat_datafellows(const char *);
 int      proto_spec(const char *);  int      proto_spec(const char *);
 char    *compat_cipher_proposal(char *);  
 char    *compat_pkalg_proposal(char *);  /*
 char    *compat_kex_proposal(char *);   * compat_*_proposal will update their respective proposals based on the
    * active compat flags. The replacement is performed in-place - i.e. they
    * will free their argument and return a new heap-allocated string.
    */
   char    *compat_cipher_proposal(char *, u_int compat);
   char    *compat_pkalg_proposal(char *, u_int compat);
   char    *compat_kex_proposal(char *, u_int compat);
   
 extern int datafellows;  extern int datafellows;
 #endif  #endif

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53