diff options
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h index 0bff6d80a..a8a8870d7 100644 --- a/readconf.h +++ b/readconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.h,v 1.129 2018/11/23 05:08:07 djm Exp $ */ | 1 | /* $OpenBSD: readconf.h,v 1.132 2020/01/23 02:46:49 dtucker Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -29,6 +29,7 @@ struct allowed_cname { | |||
29 | 29 | ||
30 | typedef struct { | 30 | typedef struct { |
31 | int forward_agent; /* Forward authentication agent. */ | 31 | int forward_agent; /* Forward authentication agent. */ |
32 | char *forward_agent_sock_path; /* Optional path of the agent. */ | ||
32 | int forward_x11; /* Forward X11 display. */ | 33 | int forward_x11; /* Forward X11 display. */ |
33 | int forward_x11_timeout; /* Expiration for Cookies */ | 34 | int forward_x11_timeout; /* Expiration for Cookies */ |
34 | int forward_x11_trusted; /* Trust Forward X11 display. */ | 35 | int forward_x11_trusted; /* Trust Forward X11 display. */ |
@@ -88,6 +89,7 @@ typedef struct { | |||
88 | char *bind_address; /* local socket address for connection to sshd */ | 89 | char *bind_address; /* local socket address for connection to sshd */ |
89 | char *bind_interface; /* local interface for bind address */ | 90 | char *bind_interface; /* local interface for bind address */ |
90 | char *pkcs11_provider; /* PKCS#11 provider */ | 91 | char *pkcs11_provider; /* PKCS#11 provider */ |
92 | char *sk_provider; /* Security key provider */ | ||
91 | int verify_host_key_dns; /* Verify host key using DNS */ | 93 | int verify_host_key_dns; /* Verify host key using DNS */ |
92 | 94 | ||
93 | int num_identity_files; /* Number of files for RSA/DSA identities. */ | 95 | int num_identity_files; /* Number of files for RSA/DSA identities. */ |
@@ -203,6 +205,7 @@ typedef struct { | |||
203 | #define SSH_STRICT_HOSTKEY_YES 2 | 205 | #define SSH_STRICT_HOSTKEY_YES 2 |
204 | #define SSH_STRICT_HOSTKEY_ASK 3 | 206 | #define SSH_STRICT_HOSTKEY_ASK 3 |
205 | 207 | ||
208 | const char *kex_default_pk_alg(void); | ||
206 | void initialize_options(Options *); | 209 | void initialize_options(Options *); |
207 | void fill_default_options(Options *); | 210 | void fill_default_options(Options *); |
208 | void fill_default_options_for_canonicalization(Options *); | 211 | void fill_default_options_for_canonicalization(Options *); |