summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/readconf.h b/readconf.h
index eb236fc5c..42bfdf662 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.71 2006/08/03 03:34:42 deraadt Exp $ */ 1/* $OpenBSD: readconf.h,v 1.74 2008/06/26 11:46:31 grunk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -59,7 +59,6 @@ typedef struct {
59 int compression_level; /* Compression level 1 (fast) to 9 59 int compression_level; /* Compression level 1 (fast) to 9
60 * (best). */ 60 * (best). */
61 int tcp_keep_alive; /* Set SO_KEEPALIVE. */ 61 int tcp_keep_alive; /* Set SO_KEEPALIVE. */
62 int setuptimeout; /* timeout in the protocol banner exchange */
63 LogLevel log_level; /* Level for logging. */ 62 LogLevel log_level; /* Level for logging. */
64 63
65 int port; /* Port to connect. */ 64 int port; /* Port to connect. */
@@ -104,7 +103,7 @@ typedef struct {
104 int clear_forwardings; 103 int clear_forwardings;
105 104
106 int enable_ssh_keysign; 105 int enable_ssh_keysign;
107 int rekey_limit; 106 int64_t rekey_limit;
108 int no_host_authentication_for_localhost; 107 int no_host_authentication_for_localhost;
109 int identities_only; 108 int identities_only;
110 int server_alive_interval; 109 int server_alive_interval;
@@ -124,6 +123,7 @@ typedef struct {
124 123
125 char *local_command; 124 char *local_command;
126 int permit_local_command; 125 int permit_local_command;
126 int visual_host_key;
127 127
128} Options; 128} Options;
129 129