[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.146 and 1.147

version 1.146, 2020/08/27 01:07:10 version 1.147, 2020/10/16 13:26:13
Line 118 
Line 118 
         struct ForwardOptions fwd_opts; /* forwarding options */          struct ForwardOptions fwd_opts; /* forwarding options */
         SyslogFacility log_facility;    /* Facility for system logging. */          SyslogFacility log_facility;    /* Facility for system logging. */
         LogLevel log_level;     /* Level for system logging. */          LogLevel log_level;     /* Level for system logging. */
           u_int   num_log_verbose;        /* Verbose log overrides */
           char    **log_verbose;
         int     hostbased_authentication;       /* If true, permit ssh2 hostbased auth */          int     hostbased_authentication;       /* If true, permit ssh2 hostbased auth */
         int     hostbased_uses_name_from_packet_only; /* experimental */          int     hostbased_uses_name_from_packet_only; /* experimental */
         char   *hostbased_key_types;    /* Key types allowed for hostbased */          char   *hostbased_key_types;    /* Key types allowed for hostbased */
Line 278 
Line 280 
                 M_CP_STRARRAYOPT(auth_methods, num_auth_methods); \                  M_CP_STRARRAYOPT(auth_methods, num_auth_methods); \
                 M_CP_STRARRAYOPT(permitted_opens, num_permitted_opens); \                  M_CP_STRARRAYOPT(permitted_opens, num_permitted_opens); \
                 M_CP_STRARRAYOPT(permitted_listens, num_permitted_listens); \                  M_CP_STRARRAYOPT(permitted_listens, num_permitted_listens); \
                   M_CP_STRARRAYOPT(log_verbose, num_log_verbose); \
         } while (0)          } while (0)
   
 struct connection_info *get_connection_info(struct ssh *, int, int);  struct connection_info *get_connection_info(struct ssh *, int, int);

Legend:
Removed from v.1.146  
changed lines
  Added in v.1.147