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

Diff for /src/usr.bin/ssh/readconf.h between version 1.110 and 1.111

version 1.110, 2015/07/10 06:21:53 version 1.111, 2015/09/24 06:15:11
Line 95 
Line 95 
         int    identity_file_userprovided[SSH_MAX_IDENTITY_FILES];          int    identity_file_userprovided[SSH_MAX_IDENTITY_FILES];
         struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];          struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];
   
           int     num_certificate_files; /* Number of extra certificates for ssh. */
           char    *certificate_files[SSH_MAX_CERTIFICATE_FILES];
           int     certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES];
           struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
   
         /* Local TCP/IP forward requests. */          /* Local TCP/IP forward requests. */
         int     num_local_forwards;          int     num_local_forwards;
         struct Forward *local_forwards;          struct Forward *local_forwards;
Line 194 
Line 199 
 void     add_local_forward(Options *, const struct Forward *);  void     add_local_forward(Options *, const struct Forward *);
 void     add_remote_forward(Options *, const struct Forward *);  void     add_remote_forward(Options *, const struct Forward *);
 void     add_identity_file(Options *, const char *, const char *, int);  void     add_identity_file(Options *, const char *, const char *, int);
   void     add_certificate_file(Options *, const char *, int);
   
 #endif                          /* READCONF_H */  #endif                          /* READCONF_H */

Legend:
Removed from v.1.110  
changed lines
  Added in v.1.111