[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.30 and 1.31

version 1.30, 2000/10/14 12:12:09 version 1.31, 2000/11/12 19:50:38
Line 23 
Line 23 
 #define MAX_ALLOW_GROUPS        256     /* Max # groups on allow list. */  #define MAX_ALLOW_GROUPS        256     /* Max # groups on allow list. */
 #define MAX_DENY_GROUPS         256     /* Max # groups on deny list. */  #define MAX_DENY_GROUPS         256     /* Max # groups on deny list. */
 #define MAX_SUBSYSTEMS          256     /* Max # subsystems. */  #define MAX_SUBSYSTEMS          256     /* Max # subsystems. */
   #define MAX_HOSTKEYS            256     /* Max # hostkeys. */
   
 typedef struct {  typedef struct {
         unsigned int num_ports;          unsigned int num_ports;
Line 30 
Line 31 
         u_short ports[MAX_PORTS];       /* Port number to listen on. */          u_short ports[MAX_PORTS];       /* Port number to listen on. */
         char   *listen_addr;            /* Address on which the server listens. */          char   *listen_addr;            /* Address on which the server listens. */
         struct addrinfo *listen_addrs;  /* Addresses on which the server listens. */          struct addrinfo *listen_addrs;  /* Addresses on which the server listens. */
         char   *host_key_file;  /* File containing host key. */          char   *host_key_files[MAX_HOSTKEYS];   /* Files containing host keys. */
         char   *host_dsa_key_file;      /* File containing dsa host key. */          int     num_host_key_files;     /* Number of files for host keys. */
         char   *pid_file;       /* Where to put our pid */          char   *pid_file;       /* Where to put our pid */
         int     server_key_bits;/* Size of the server key. */          int     server_key_bits;/* Size of the server key. */
         int     login_grace_time;       /* Disconnect if no auth in this time          int     login_grace_time;       /* Disconnect if no auth in this time
Line 59 
Line 60 
         int     rhosts_rsa_authentication;      /* If true, permit rhosts RSA          int     rhosts_rsa_authentication;      /* If true, permit rhosts RSA
                                                  * authentication. */                                                   * authentication. */
         int     rsa_authentication;     /* If true, permit RSA authentication. */          int     rsa_authentication;     /* If true, permit RSA authentication. */
         int     dsa_authentication;     /* If true, permit DSA authentication. */          int     pubkey_authentication;  /* If true, permit ssh2 pubkey authentication. */
 #ifdef KRB4  #ifdef KRB4
         int     kerberos_authentication;        /* If true, permit Kerberos          int     kerberos_authentication;        /* If true, permit Kerberos
                                                  * authentication. */                                                   * authentication. */

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31