[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.104 and 1.105

version 1.104, 2012/10/30 21:29:55 version 1.105, 2012/11/04 11:09:15
Line 28 
Line 28 
 #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. */  #define MAX_AUTHKEYS_FILES      256     /* Max # of authorized_keys files. */
   #define MAX_AUTH_METHODS        256     /* Max # of AuthenticationMethods. */
   
 /* permit_root_login */  /* permit_root_login */
 #define PERMIT_NOT_SET          -1  #define PERMIT_NOT_SET          -1
Line 168 
Line 169 
         char   *authorized_keys_command_user;          char   *authorized_keys_command_user;
   
         char   *version_addendum;       /* Appended to SSH banner */          char   *version_addendum;       /* Appended to SSH banner */
   
           u_int   num_auth_methods;
           char   *auth_methods[MAX_AUTH_METHODS];
 }       ServerOptions;  }       ServerOptions;
   
 /* Information about the incoming connection as used by Match */  /* Information about the incoming connection as used by Match */
Line 197 
Line 201 
                 M_CP_STRARRAYOPT(allow_groups, num_allow_groups); \                  M_CP_STRARRAYOPT(allow_groups, num_allow_groups); \
                 M_CP_STRARRAYOPT(deny_groups, num_deny_groups); \                  M_CP_STRARRAYOPT(deny_groups, num_deny_groups); \
                 M_CP_STRARRAYOPT(accept_env, num_accept_env); \                  M_CP_STRARRAYOPT(accept_env, num_accept_env); \
                   M_CP_STRARRAYOPT(auth_methods, num_auth_methods); \
         } while (0)          } while (0)
   
 struct connection_info *get_connection_info(int, int);  struct connection_info *get_connection_info(int, int);

Legend:
Removed from v.1.104  
changed lines
  Added in v.1.105