summaryrefslogtreecommitdiff
path: root/sshconnect.h
diff options
context:
space:
mode:
authordjm <djm>2013-10-17 00:47:23 +0000
committerdjm <djm>2013-10-17 00:47:23 +0000
commit6adb89faf87799e383c1a165b44c7707db216a29 (patch)
tree50fffe71ec07f9471c8257a47f89b90a4112f3e7 /sshconnect.h
parente2d02c57a75300b5e96e8f9c7502aa9577953239 (diff)
downloadopenssh-6adb89faf87799e383c1a165b44c7707db216a29.tar.gz
- djm@cvs.openbsd.org 2013/10/16 02:31:47
[readconf.c readconf.h roaming_client.c ssh.1 ssh.c ssh_config.5] [sshconnect.c sshconnect.h] Implement client-side hostname canonicalisation to allow an explicit search path of domain suffixes to use to convert unqualified host names to fully-qualified ones for host key matching. This is particularly useful for host certificates, which would otherwise need to list unqualified names alongside fully-qualified ones (and this causes a number of problems). "looks fine" markus@
Diffstat (limited to 'sshconnect.h')
-rw-r--r--sshconnect.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sshconnect.h b/sshconnect.h
index fd7f7f7c..0ea6e99f 100644
--- a/sshconnect.h
+++ b/sshconnect.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.h,v 1.27 2010/11/29 23:45:51 djm Exp $ */
+/* $OpenBSD: sshconnect.h,v 1.28 2013/10/16 02:31:47 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -31,9 +31,9 @@ struct Sensitive {
int external_keysign;
};
-int
-ssh_connect(const char *, struct sockaddr_storage *, u_short, int, int,
- int *, int, int, const char *);
+struct addrinfo;
+int ssh_connect(const char *, struct addrinfo *, struct sockaddr_storage *,
+ u_short, int, int, int *, int, int);
void ssh_kill_proxy_command(void);
void ssh_login(Sensitive *, const char *, struct sockaddr *, u_short,