[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.144 and 1.145

version 1.144, 2020/04/17 03:30:05 version 1.145, 2020/07/05 23:59:45
Line 146 
Line 146 
         int     permit_empty_passwd;    /* If false, do not permit empty          int     permit_empty_passwd;    /* If false, do not permit empty
                                          * passwords. */                                           * passwords. */
         int     permit_user_env;        /* If true, read ~/.ssh/environment */          int     permit_user_env;        /* If true, read ~/.ssh/environment */
         char   *permit_user_env_whitelist; /* pattern-list whitelist */          char   *permit_user_env_allowlist; /* pattern-list of allowed env names */
         int     compression;    /* If true, compression is allowed */          int     compression;    /* If true, compression is allowed */
         int     allow_tcp_forwarding; /* One of FORWARD_* */          int     allow_tcp_forwarding; /* One of FORWARD_* */
         int     allow_streamlocal_forwarding; /* One of FORWARD_* */          int     allow_streamlocal_forwarding; /* One of FORWARD_* */
Line 248 
Line 248 
 /*  /*
  * These are string config options that must be copied between the   * These are string config options that must be copied between the
  * Match sub-config and the main config, and must be sent from the   * Match sub-config and the main config, and must be sent from the
  * privsep slave to the privsep master. We use a macro to ensure all   * privsep child to the privsep master. We use a macro to ensure all
  * the options are copied and the copies are done in the correct order.   * the options are copied and the copies are done in the correct order.
  *   *
  * NB. an option must appear in servconf.c:copy_set_server_options() or   * NB. an option must appear in servconf.c:copy_set_server_options() or
Line 267 
Line 267 
                 M_CP_STROPT(pubkey_key_types); \                  M_CP_STROPT(pubkey_key_types); \
                 M_CP_STROPT(ca_sign_algorithms); \                  M_CP_STROPT(ca_sign_algorithms); \
                 M_CP_STROPT(routing_domain); \                  M_CP_STROPT(routing_domain); \
                 M_CP_STROPT(permit_user_env_whitelist); \                  M_CP_STROPT(permit_user_env_allowlist); \
                 M_CP_STRARRAYOPT(authorized_keys_files, num_authkeys_files); \                  M_CP_STRARRAYOPT(authorized_keys_files, num_authkeys_files); \
                 M_CP_STRARRAYOPT(allow_users, num_allow_users); \                  M_CP_STRARRAYOPT(allow_users, num_allow_users); \
                 M_CP_STRARRAYOPT(deny_users, num_deny_users); \                  M_CP_STRARRAYOPT(deny_users, num_deny_users); \

Legend:
Removed from v.1.144  
changed lines
  Added in v.1.145