summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-09-14 23:42:11 +0100
committerColin Watson <cjwatson@debian.org>2013-09-14 23:42:11 +0100
commit327155e6824b3ee13837bdde04e4eb47e147ff46 (patch)
tree8f8743122403c7a2e6ed919156711fb1520c657f /readconf.h
parent0334ce32304e9ba2a10ee5ca49ca6e8ff3ba6cf4 (diff)
parent74e339b8f8936bc0d985e053a076d0c9b5e9ea51 (diff)
* New upstream release (http://www.openssh.com/txt/release-6.3).
- sftp(1): add support for resuming partial downloads using the "reget" command and on the sftp commandline or on the "get" commandline using the "-a" (append) option (closes: #158590). - ssh(1): add an "IgnoreUnknown" configuration option to selectively suppress errors arising from unknown configuration directives (closes: #436052). - sftp(1): update progressmeter when data is acknowledged, not when it's sent (partially addresses #708372). - ssh(1): do not fatally exit when attempting to cleanup multiplexing- created channels that are incompletely opened (closes: #651357).
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 6ecbf281e..a508151f7 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.93 2013/02/22 04:45:09 dtucker Exp $ */ 1/* $OpenBSD: readconf.h,v 1.95 2013/05/16 04:27:50 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -116,6 +116,7 @@ typedef struct {
116 116
117 int enable_ssh_keysign; 117 int enable_ssh_keysign;
118 int64_t rekey_limit; 118 int64_t rekey_limit;
119 int rekey_interval;
119 int no_host_authentication_for_localhost; 120 int no_host_authentication_for_localhost;
120 int identities_only; 121 int identities_only;
121 int server_alive_interval; 122 int server_alive_interval;
@@ -142,6 +143,8 @@ typedef struct {
142 int use_roaming; 143 int use_roaming;
143 144
144 int request_tty; 145 int request_tty;
146
147 char *ignored_unknown; /* Pattern list of unknown tokens to ignore */
145} Options; 148} Options;
146 149
147#define SSHCTL_MASTER_NO 0 150#define SSHCTL_MASTER_NO 0