summaryrefslogtreecommitdiffstats
path: root/readconf.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2023-10-12 00:42:26 +0200
committerDamien Miller <djm@mindrot.org>2023-10-12 01:00:13 +0200
commita752a6c0e1001f93696d7025f0c867f0376e2ecf (patch)
treedbe5b78436bc288efe6f458e167864f38056f768 /readconf.h
parentupstream: add support for reading ED25519 private keys in PEM PKCS8 (diff)
downloadopenssh-a752a6c0e1001f93696d7025f0c867f0376e2ecf.tar.xz
openssh-a752a6c0e1001f93696d7025f0c867f0376e2ecf.zip
upstream: add ChannelTimeout support to the client, mirroring the
same option in the server. ok markus@ OpenBSD-Commit-ID: 55630b26f390ac063980cfe7ad8c54b03284ef02
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h
index ce261bd63..702b027de 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.h,v 1.152 2023/08/28 03:31:16 djm Exp $ */
+/* $OpenBSD: readconf.h,v 1.153 2023/10/11 22:42:26 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -182,6 +182,9 @@ typedef struct {
int enable_escape_commandline; /* ~C commandline */
int obscure_keystroke_timing_interval;
+ char **channel_timeouts; /* inactivity timeout by channel type */
+ u_int num_channel_timeouts;
+
char *ignored_unknown; /* Pattern list of unknown tokens to ignore */
} Options;