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

Diff for /src/usr.bin/ssh/servconf.h between version 1.97 and 1.98

version 1.97, 2011/05/20 03:25:45 version 1.98, 2011/05/23 03:30:07
Line 27 
Line 27 
 #define MAX_HOSTCERTS           256     /* Max # host certificates. */  #define MAX_HOSTCERTS           256     /* Max # host certificates. */
 #define MAX_ACCEPT_ENV          256     /* Max # of env vars. */  #define MAX_ACCEPT_ENV          256     /* Max # of env vars. */
 #define MAX_MATCH_GROUPS        256     /* Max # of groups for Match. */  #define MAX_MATCH_GROUPS        256     /* Max # of groups for Match. */
   #define MAX_AUTHKEYS_FILES      256     /* Max # of authorized_keys files. */
   
 /* permit_root_login */  /* permit_root_login */
 #define PERMIT_NOT_SET          -1  #define PERMIT_NOT_SET          -1
Line 145 
Line 146 
                                          * disconnect the session                                           * disconnect the session
                                          */                                           */
   
         char   *authorized_keys_file;   /* File containing public keys */          u_int num_authkeys_files;       /* Files containing public keys */
           char   *authorized_keys_files[MAX_AUTHKEYS_FILES];
   
         char   *adm_forced_command;          char   *adm_forced_command;
   
Line 169 
Line 171 
                 M_CP_STROPT(banner); \                  M_CP_STROPT(banner); \
                 M_CP_STROPT(trusted_user_ca_keys); \                  M_CP_STROPT(trusted_user_ca_keys); \
                 M_CP_STROPT(revoked_keys_file); \                  M_CP_STROPT(revoked_keys_file); \
                 M_CP_STROPT(authorized_keys_file); \  
                 M_CP_STROPT(authorized_principals_file); \                  M_CP_STROPT(authorized_principals_file); \
                   M_CP_STRARRAYOPT(authorized_keys_files, num_authkeys_files); \
         } while (0)          } while (0)
   
 void     initialize_server_options(ServerOptions *);  void     initialize_server_options(ServerOptions *);

Legend:
Removed from v.1.97  
changed lines
  Added in v.1.98