diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-21 03:09:47 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-21 03:09:47 +0200 |
commit | 23e0f667f88fabb38fd22cedf50e81e78fb99e3e (patch) | |
tree | cc55e9a9d007a61a2f4cd1469e1b8f786ee38313 /servconf.h | |
parent | - stevesk@cvs.openbsd.org 2002/06/20 20:03:34 (diff) | |
download | openssh-23e0f667f88fabb38fd22cedf50e81e78fb99e3e.tar.xz openssh-23e0f667f88fabb38fd22cedf50e81e78fb99e3e.zip |
- markus@cvs.openbsd.org 2002/06/20 23:05:56
[servconf.c servconf.h session.c sshd.c]
allow Compression=yes/no in sshd_config
Diffstat (limited to 'servconf.h')
-rw-r--r-- | servconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/servconf.h b/servconf.h index c4e5b5f42..c94f541d0 100644 --- a/servconf.h +++ b/servconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: servconf.h,v 1.57 2002/03/20 19:12:25 stevesk Exp $ */ +/* $OpenBSD: servconf.h,v 1.58 2002/06/20 23:05:55 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -98,6 +98,7 @@ typedef struct { int permit_empty_passwd; /* If false, do not permit empty * passwords. */ int use_login; /* If true, login(1) is used */ + int compression; /* If true, compression is allowed */ int allow_tcp_forwarding; u_int num_allow_users; char *allow_users[MAX_ALLOW_USERS]; |