diff options
author | Colin Watson <cjwatson@debian.org> | 2016-02-29 12:15:15 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2016-03-08 11:51:22 +0000 |
commit | 46961f5704f8e86cea3e99253faad55aef4d8f35 (patch) | |
tree | 0dd97fa4fb649a62b4639fe2674380872b1f3e98 /readconf.h | |
parent | c753fe267efb1b027424fa8706cf0385fc3d14c1 (diff) | |
parent | 85e40e87a75fb80a0bf893ac05a417d6c353537d (diff) |
New upstream release (7.2).
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/readconf.h b/readconf.h index e7e80c344..37a055521 100644 --- a/readconf.h +++ b/readconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.h,v 1.110 2015/07/10 06:21:53 markus Exp $ */ | 1 | /* $OpenBSD: readconf.h,v 1.113 2016/01/14 16:17:40 markus Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -100,6 +100,13 @@ typedef struct { | |||
100 | int identity_file_userprovided[SSH_MAX_IDENTITY_FILES]; | 100 | int identity_file_userprovided[SSH_MAX_IDENTITY_FILES]; |
101 | struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES]; | 101 | struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES]; |
102 | 102 | ||
103 | int num_certificate_files; /* Number of extra certificates for ssh. */ | ||
104 | char *certificate_files[SSH_MAX_CERTIFICATE_FILES]; | ||
105 | int certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES]; | ||
106 | struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES]; | ||
107 | |||
108 | int add_keys_to_agent; | ||
109 | |||
103 | /* Local TCP/IP forward requests. */ | 110 | /* Local TCP/IP forward requests. */ |
104 | int num_local_forwards; | 111 | int num_local_forwards; |
105 | struct Forward *local_forwards; | 112 | struct Forward *local_forwards; |
@@ -135,8 +142,6 @@ typedef struct { | |||
135 | int permit_local_command; | 142 | int permit_local_command; |
136 | int visual_host_key; | 143 | int visual_host_key; |
137 | 144 | ||
138 | int use_roaming; | ||
139 | |||
140 | int request_tty; | 145 | int request_tty; |
141 | 146 | ||
142 | int proxy_use_fdpass; | 147 | int proxy_use_fdpass; |
@@ -199,5 +204,6 @@ void dump_client_config(Options *o, const char *host); | |||
199 | void add_local_forward(Options *, const struct Forward *); | 204 | void add_local_forward(Options *, const struct Forward *); |
200 | void add_remote_forward(Options *, const struct Forward *); | 205 | void add_remote_forward(Options *, const struct Forward *); |
201 | void add_identity_file(Options *, const char *, const char *, int); | 206 | void add_identity_file(Options *, const char *, const char *, int); |
207 | void add_certificate_file(Options *, const char *, int); | ||
202 | 208 | ||
203 | #endif /* READCONF_H */ | 209 | #endif /* READCONF_H */ |