diff options
author | Colin Watson <cjwatson@debian.org> | 2014-02-10 00:18:28 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2014-02-10 00:18:28 +0000 |
commit | 9a975a9faed7c4f334e8c8490db3e77e102f2b21 (patch) | |
tree | 764a885ec9a963f6a8b15de6e1765f16b9ac4738 /servconf.h | |
parent | ee196dab7c5f97f0b80c8099343a375bead92010 (diff) | |
parent | cdb6c90811caa5df2df856be9b0b16db020fe31d (diff) |
Import openssh_6.5p1.orig.tar.gz
Diffstat (limited to 'servconf.h')
-rw-r--r-- | servconf.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/servconf.h b/servconf.h index 98aad8ba2..8812c5aab 100644 --- a/servconf.h +++ b/servconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: servconf.h,v 1.109 2013/07/19 07:37:48 markus Exp $ */ | 1 | /* $OpenBSD: servconf.h,v 1.111 2013/12/05 01:16:41 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -82,6 +82,7 @@ typedef struct { | |||
82 | * searching at */ | 82 | * searching at */ |
83 | int x11_use_localhost; /* If true, use localhost for fake X11 server. */ | 83 | int x11_use_localhost; /* If true, use localhost for fake X11 server. */ |
84 | char *xauth_location; /* Location of xauth program */ | 84 | char *xauth_location; /* Location of xauth program */ |
85 | int permit_tty; /* If false, deny pty allocation */ | ||
85 | int strict_modes; /* If true, require string home dir modes. */ | 86 | int strict_modes; /* If true, require string home dir modes. */ |
86 | int tcp_keep_alive; /* If true, set SO_KEEPALIVE. */ | 87 | int tcp_keep_alive; /* If true, set SO_KEEPALIVE. */ |
87 | int ip_qos_interactive; /* IP ToS/DSCP/class for interactive */ | 88 | int ip_qos_interactive; /* IP ToS/DSCP/class for interactive */ |
@@ -201,6 +202,9 @@ struct connection_info { | |||
201 | * Match sub-config and the main config, and must be sent from the | 202 | * Match sub-config and the main config, and must be sent from the |
202 | * privsep slave to the privsep master. We use a macro to ensure all | 203 | * privsep slave to the privsep master. We use a macro to ensure all |
203 | * the options are copied and the copies are done in the correct order. | 204 | * the options are copied and the copies are done in the correct order. |
205 | * | ||
206 | * NB. an option must appear in servconf.c:copy_set_server_options() or | ||
207 | * COPY_MATCH_STRING_OPTS here but never both. | ||
204 | */ | 208 | */ |
205 | #define COPY_MATCH_STRING_OPTS() do { \ | 209 | #define COPY_MATCH_STRING_OPTS() do { \ |
206 | M_CP_STROPT(banner); \ | 210 | M_CP_STROPT(banner); \ |