summaryrefslogtreecommitdiffstats
path: root/readconf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-12-17 06:33:10 +0100
committerDamien Miller <djm@mindrot.org>2003-12-17 06:33:10 +0100
commit509b0107f0e67cb4af663c147179d35fa6425614 (patch)
treeb4662caa51b3ac22533e03221a7fdc886ed27619 /readconf.h
parent - markus@cvs.openbsd.org 2003/12/14 12:37:21 (diff)
downloadopenssh-509b0107f0e67cb4af663c147179d35fa6425614.tar.xz
openssh-509b0107f0e67cb4af663c147179d35fa6425614.zip
- markus@cvs.openbsd.org 2003/12/16 15:49:51
[clientloop.c clientloop.h readconf.c readconf.h scp.1 sftp.1 ssh.1] [ssh.c ssh_config.5] application layer keep alive (ServerAliveInterval ServerAliveCountMax) for ssh(1), similar to the sshd(8) option; ok beck@; with help from jmc and dtucker@
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h
index f2a859fbe..3f27af961 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.h,v 1.58 2003/12/09 21:53:36 markus Exp $ */
+/* $OpenBSD: readconf.h,v 1.59 2003/12/16 15:49:51 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -100,6 +100,8 @@ typedef struct {
int enable_ssh_keysign;
int rekey_limit;
int no_host_authentication_for_localhost;
+ int server_alive_interval;
+ int server_alive_count_max;
} Options;