summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h12
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);
199void add_local_forward(Options *, const struct Forward *); 204void add_local_forward(Options *, const struct Forward *);
200void add_remote_forward(Options *, const struct Forward *); 205void add_remote_forward(Options *, const struct Forward *);
201void add_identity_file(Options *, const char *, const char *, int); 206void add_identity_file(Options *, const char *, const char *, int);
207void add_certificate_file(Options *, const char *, int);
202 208
203#endif /* READCONF_H */ 209#endif /* READCONF_H */