summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h
index d61161a84..f469daaff 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.123 2017/09/03 23:33:13 djm Exp $ */ 1/* $OpenBSD: readconf.h,v 1.125 2018/02/23 02:34:33 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -86,6 +86,7 @@ typedef struct {
86 char *user_hostfiles[SSH_MAX_HOSTS_FILES]; 86 char *user_hostfiles[SSH_MAX_HOSTS_FILES];
87 char *preferred_authentications; 87 char *preferred_authentications;
88 char *bind_address; /* local socket address for connection to sshd */ 88 char *bind_address; /* local socket address for connection to sshd */
89 char *bind_interface; /* local interface for bind address */
89 char *pkcs11_provider; /* PKCS#11 provider */ 90 char *pkcs11_provider; /* PKCS#11 provider */
90 int verify_host_key_dns; /* Verify host key using DNS */ 91 int verify_host_key_dns; /* Verify host key using DNS */
91 92
@@ -209,6 +210,7 @@ int read_config_file(const char *, struct passwd *, const char *,
209 const char *, Options *, int); 210 const char *, Options *, int);
210int parse_forward(struct Forward *, const char *, int, int); 211int parse_forward(struct Forward *, const char *, int, int);
211int parse_jump(const char *, Options *, int); 212int parse_jump(const char *, Options *, int);
213int parse_ssh_uri(const char *, char **, char **, int *);
212int default_ssh_port(void); 214int default_ssh_port(void);
213int option_clear_or_none(const char *); 215int option_clear_or_none(const char *);
214void dump_client_config(Options *o, const char *host); 216void dump_client_config(Options *o, const char *host);