diff options
author | djm@openbsd.org <djm@openbsd.org> | 2020-10-16 15:26:13 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-10-16 15:43:17 +0200 |
commit | 793b583d097381730adaf6f68bed3c343139a013 (patch) | |
tree | 37026343eaf098e281b54fe0d0b632b348585ba7 /readconf.h | |
parent | upstream: revised log infrastructure for OpenSSH (diff) | |
download | openssh-793b583d097381730adaf6f68bed3c343139a013.tar.xz openssh-793b583d097381730adaf6f68bed3c343139a013.zip |
upstream: LogVerbose keyword for ssh and sshd
Allows forcing maximum debug logging by file/function/line pattern-
lists.
ok markus@
OpenBSD-Commit-ID: c294c25732d1b4fe7e345cb3e044df00531a6356
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/readconf.h b/readconf.h index d6a15550d..be9154da0 100644 --- a/readconf.h +++ b/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.134 2020/08/11 09:49:57 djm Exp $ */ +/* $OpenBSD: readconf.h,v 1.135 2020/10/16 13:26:13 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -55,7 +55,8 @@ typedef struct { int ip_qos_bulk; /* IP ToS/DSCP/class for bulk traffic */ SyslogFacility log_facility; /* Facility for system logging. */ LogLevel log_level; /* Level for logging. */ - + u_int num_log_verbose; /* Verbose log overrides */ + char **log_verbose; int port; /* Port to connect. */ int address_family; int connection_attempts; /* Max attempts (seconds) before |