summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2004-03-01 02:25:32 +0000
committerColin Watson <cjwatson@debian.org>2004-03-01 02:25:32 +0000
commitea8116a11e3de70036dbc665ccb0d486cf89cac9 (patch)
treed73ccdff78d8608e156465af42e6a1b3527fb2d6 /readconf.h
parente39b311381a5609cc05acf298c42fba196dc524b (diff)
parentf5bda272678ec6dccaa5f29379cf60cb855018e8 (diff)
Merge 3.8p1 to the trunk. This builds and runs, but I haven't tested it
extensively yet. ProtocolKeepAlives is now just a compatibility alias for ServerAliveInterval.
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/readconf.h b/readconf.h
index 56cbec539..8521f85ac 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.55 2003/09/01 18:15:50 markus Exp $ */ 1/* $OpenBSD: readconf.h,v 1.59 2003/12/16 15:49:51 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -30,6 +30,7 @@ typedef struct {
30typedef struct { 30typedef struct {
31 int forward_agent; /* Forward authentication agent. */ 31 int forward_agent; /* Forward authentication agent. */
32 int forward_x11; /* Forward X11 display. */ 32 int forward_x11; /* Forward X11 display. */
33 int forward_x11_trusted; /* Trust Forward X11 display. */
33 char *xauth_location; /* Location for xauth program */ 34 char *xauth_location; /* Location for xauth program */
34 int gateway_ports; /* Allow remote connects to forwarded ports. */ 35 int gateway_ports; /* Allow remote connects to forwarded ports. */
35 int use_privileged_port; /* Don't use privileged port if false. */ 36 int use_privileged_port; /* Don't use privileged port if false. */
@@ -52,8 +53,7 @@ typedef struct {
52 int compression; /* Compress packets in both directions. */ 53 int compression; /* Compress packets in both directions. */
53 int compression_level; /* Compression level 1 (fast) to 9 54 int compression_level; /* Compression level 1 (fast) to 9
54 * (best). */ 55 * (best). */
55 int keepalives; /* Set SO_KEEPALIVE. */ 56 int tcp_keep_alive; /* Set SO_KEEPALIVE. */
56 int protocolkeepalives; /* ssh-level keepalives */
57 int setuptimeout; /* timeout in the protocol banner exchange */ 57 int setuptimeout; /* timeout in the protocol banner exchange */
58 LogLevel log_level; /* Level for logging. */ 58 LogLevel log_level; /* Level for logging. */
59 59
@@ -62,7 +62,7 @@ typedef struct {
62 int connection_attempts; /* Max attempts (seconds) before 62 int connection_attempts; /* Max attempts (seconds) before
63 * giving up */ 63 * giving up */
64 int connection_timeout; /* Max time (seconds) before 64 int connection_timeout; /* Max time (seconds) before
65 * aborting connection attempt */ 65 * aborting connection attempt */
66 int number_of_password_prompts; /* Max number of password 66 int number_of_password_prompts; /* Max number of password
67 * prompts. */ 67 * prompts. */
68 int cipher; /* Cipher to use. */ 68 int cipher; /* Cipher to use. */
@@ -101,6 +101,8 @@ typedef struct {
101 int enable_ssh_keysign; 101 int enable_ssh_keysign;
102 int rekey_limit; 102 int rekey_limit;
103 int no_host_authentication_for_localhost; 103 int no_host_authentication_for_localhost;
104 int server_alive_interval;
105 int server_alive_count_max;
104} Options; 106} Options;
105 107
106 108