forked from openssh/openssh-portable
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [email protected] 2002/06/20 23:05:56
[servconf.c servconf.h session.c sshd.c] allow Compression=yes/no in sshd_config
- Loading branch information
Showing
5 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,9 @@ | |
- [email protected] 2002/06/20 20:03:34 | ||
[ssh_config sshd_config] | ||
refer to config file man page | ||
- [email protected] 2002/06/20 23:05:56 | ||
[servconf.c servconf.h session.c sshd.c] | ||
allow Compression=yes/no in sshd_config | ||
- (bal) Cygwin special handling of empty passwords wrong. Patch by | ||
[email protected] | ||
|
||
|
@@ -975,4 +978,4 @@ | |
- (stevesk) entropy.c: typo in debug message | ||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@ | ||
|
||
$Id: ChangeLog,v 1.2229 2002/06/21 01:06:03 mouring Exp $ | ||
$Id: ChangeLog,v 1.2230 2002/06/21 01:09:47 mouring Exp $ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> | ||
|
@@ -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]; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters