diff options
author | damien <damien> | 1999-11-11 06:57:39 +0000 |
---|---|---|
committer | damien <damien> | 1999-11-11 06:57:39 +0000 |
commit | 51d86dd3c4646e10acd5216e36e9d39970959564 (patch) | |
tree | 9fe37122fa27f070abc3c9c28531877d43673b7f /readconf.h | |
parent | 7c4a076e1bff2601519b6405b84dd34b25fef010 (diff) | |
download | openssh-51d86dd3c4646e10acd5216e36e9d39970959564.tar.gz |
- Merged more OpenBSD CVS changes:
- [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
+ krb-cleanup cleanup
- [clientloop.c log-client.c log-server.c ]
[readconf.c readconf.h servconf.c servconf.h ]
[ssh.1 ssh.c ssh.h sshd.8]
add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
obsoletes QuietMode and FascistLogging in sshd.
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,7 +13,7 @@ Functions for reading the configuration file. */ -/* RCSID("$Id: readconf.h,v 1.1 1999/10/27 03:42:44 damien Exp $"); */ +/* RCSID("$Id: readconf.h,v 1.2 1999/11/11 06:57:39 damien Exp $"); */ #ifndef READCONF_H #define READCONF_H @@ -54,6 +54,7 @@ typedef struct int compression; /* Compress packets in both directions. */ int compression_level; /* Compression level 1 (fast) to 9 (best). */ int keepalives; /* Set SO_KEEPALIVE. */ + LogLevel log_level; /* Level for logging. */ int port; /* Port to connect. */ int connection_attempts; /* Max attempts (seconds) before giving up */ |