[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.37 and 1.38

version 1.37, 2001/02/11 12:59:25 version 1.38, 2001/02/12 16:16:23
Line 25 
Line 25 
 #define MAX_SUBSYSTEMS          256     /* Max # subsystems. */  #define MAX_SUBSYSTEMS          256     /* Max # subsystems. */
 #define MAX_HOSTKEYS            256     /* Max # hostkeys. */  #define MAX_HOSTKEYS            256     /* Max # hostkeys. */
   
   /* permit_root_login */
   #define PERMIT_NOT_SET          -1
   #define PERMIT_NO               0
   #define PERMIT_FORCED_ONLY      1
   #define PERMIT_NO_PASSWD        2
   #define PERMIT_YES              3
   
   
 typedef struct {  typedef struct {
         u_int num_ports;          u_int num_ports;
         u_int ports_from_cmdline;          u_int ports_from_cmdline;
Line 38 
Line 46 
         int     login_grace_time;       /* Disconnect if no auth in this time          int     login_grace_time;       /* Disconnect if no auth in this time
                                          * (sec). */                                           * (sec). */
         int     key_regeneration_time;  /* Server key lifetime (seconds). */          int     key_regeneration_time;  /* Server key lifetime (seconds). */
         int     permit_root_login;      /* If true, permit root login. */          int     permit_root_login;      /* PERMIT_*, see above */
         int     ignore_rhosts;  /* Ignore .rhosts and .shosts. */          int     ignore_rhosts;  /* Ignore .rhosts and .shosts. */
         int     ignore_user_known_hosts;        /* Ignore ~/.ssh/known_hosts          int     ignore_user_known_hosts;        /* Ignore ~/.ssh/known_hosts
                                                  * for RhostsRsaAuth */                                                   * for RhostsRsaAuth */

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38