From 93c06ab6b77514e0447fe4f1d822afcbb2a9be08 Mon Sep 17 00:00:00 2001 From: "djm@openbsd.org" Date: Wed, 6 Jun 2018 18:23:32 +0000 Subject: upstream: permitlisten option for authorized_keys; ok markus@ OpenBSD-Commit-ID: 8650883018d7aa893173d703379e4456a222c672 --- servconf.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'servconf.h') diff --git a/servconf.h b/servconf.h index 62acd8938..450b94ec4 100644 --- a/servconf.h +++ b/servconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: servconf.h,v 1.132 2018/06/06 18:22:41 djm Exp $ */ +/* $OpenBSD: servconf.h,v 1.133 2018/06/06 18:23:32 djm Exp $ */ /* * Author: Tatu Ylonen @@ -183,8 +183,8 @@ typedef struct { char **permitted_opens; /* May also be one of PERMITOPEN_* */ u_int num_permitted_opens; - char **permitted_remote_opens; /* May also be one of PERMITOPEN_* */ - u_int num_permitted_remote_opens; + char **permitted_listens; /* May also be one of PERMITOPEN_* */ + u_int num_permitted_listens; char *chroot_directory; char *revoked_keys_file; @@ -248,8 +248,7 @@ struct connection_info { M_CP_STRARRAYOPT(accept_env, num_accept_env); \ M_CP_STRARRAYOPT(auth_methods, num_auth_methods); \ M_CP_STRARRAYOPT(permitted_opens, num_permitted_opens); \ - M_CP_STRARRAYOPT(permitted_remote_opens, \ - num_permitted_remote_opens); \ + M_CP_STRARRAYOPT(permitted_listens, num_permitted_listens); \ } while (0) struct connection_info *get_connection_info(int, int); -- cgit v1.2.3