[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.7 and 1.8

version 1.7, 1999/10/11 21:07:37 version 1.8, 1999/10/11 21:48:29
Line 20 
Line 20 
   
 #define MAX_ALLOW_HOSTS         256 /* Max # hosts on allow list. */  #define MAX_ALLOW_HOSTS         256 /* Max # hosts on allow list. */
 #define MAX_DENY_HOSTS          256 /* Max # hosts on deny list. */  #define MAX_DENY_HOSTS          256 /* Max # hosts on deny list. */
   #define MAX_ALLOW_USERS         256 /* Max # users on allow list. */
   #define MAX_DENY_USERS          256 /* Max # users on deny list. */
   #define MAX_ALLOW_GROUPS        256 /* Max # groups on allow list. */
   #define MAX_DENY_GROUPS         256 /* Max # groups on deny list. */
   
 typedef struct  typedef struct
 {  {
Line 64 
Line 68 
   char *allow_hosts[MAX_ALLOW_HOSTS];    char *allow_hosts[MAX_ALLOW_HOSTS];
   unsigned int num_deny_hosts;    unsigned int num_deny_hosts;
   char *deny_hosts[MAX_DENY_HOSTS];    char *deny_hosts[MAX_DENY_HOSTS];
     unsigned int num_allow_users;
     char *allow_users[MAX_ALLOW_USERS];
     unsigned int num_deny_users;
     char *deny_users[MAX_DENY_USERS];
     unsigned int num_allow_groups;
     char *allow_groups[MAX_ALLOW_GROUPS];
     unsigned int num_deny_groups;
     char *deny_groups[MAX_DENY_GROUPS];
 } ServerOptions;  } ServerOptions;
   
 /* Initializes the server options to special values that indicate that they  /* Initializes the server options to special values that indicate that they

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8