[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.105 and 1.106

version 1.105, 2012/11/04 11:09:15 version 1.106, 2012/12/02 20:46:11
Line 42 
Line 42 
 #define PRIVSEP_ON              1  #define PRIVSEP_ON              1
 #define PRIVSEP_NOSANDBOX       2  #define PRIVSEP_NOSANDBOX       2
   
   /* AllowTCPForwarding */
   #define FORWARD_DENY            0
   #define FORWARD_REMOTE          (1)
   #define FORWARD_LOCAL           (1<<1)
   #define FORWARD_ALLOW           (FORWARD_REMOTE|FORWARD_LOCAL)
   
 #define DEFAULT_AUTH_FAIL_MAX   6       /* Default for MaxAuthTries */  #define DEFAULT_AUTH_FAIL_MAX   6       /* Default for MaxAuthTries */
 #define DEFAULT_SESSIONS_MAX    10      /* Default for MaxSessions */  #define DEFAULT_SESSIONS_MAX    10      /* Default for MaxSessions */
   
Line 116 
Line 122 
         int     permit_user_env;        /* If true, read ~/.ssh/environment */          int     permit_user_env;        /* If true, read ~/.ssh/environment */
         int     use_login;      /* If true, login(1) is used */          int     use_login;      /* If true, login(1) is used */
         int     compression;    /* If true, compression is allowed */          int     compression;    /* If true, compression is allowed */
         int     allow_tcp_forwarding;          int     allow_tcp_forwarding; /* One of FORWARD_* */
         int     allow_agent_forwarding;          int     allow_agent_forwarding;
         u_int num_allow_users;          u_int num_allow_users;
         char   *allow_users[MAX_ALLOW_USERS];          char   *allow_users[MAX_ALLOW_USERS];

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