summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/sshconnect.c b/sshconnect.c
index e40ba984c..0994126c0 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -13,23 +13,24 @@
13 */ 13 */
14 14
15#include "includes.h" 15#include "includes.h"
16RCSID("$OpenBSD: sshconnect.c,v 1.90 2001/01/13 18:32:50 markus Exp $"); 16RCSID("$OpenBSD: sshconnect.c,v 1.91 2001/01/21 19:05:59 markus Exp $");
17 17
18#include <openssl/bn.h> 18#include <openssl/bn.h>
19#include <openssl/dsa.h>
20#include <openssl/rsa.h>
21 19
20#include "ssh.h"
22#include "xmalloc.h" 21#include "xmalloc.h"
23#include "rsa.h" 22#include "rsa.h"
24#include "ssh.h"
25#include "buffer.h" 23#include "buffer.h"
26#include "packet.h" 24#include "packet.h"
27#include "uidswap.h" 25#include "uidswap.h"
28#include "compat.h" 26#include "compat.h"
29#include "readconf.h"
30#include "key.h" 27#include "key.h"
31#include "sshconnect.h" 28#include "sshconnect.h"
32#include "hostfile.h" 29#include "hostfile.h"
30#include "log.h"
31#include "readconf.h"
32#include "atomicio.h"
33#include "misc.h"
33 34
34char *client_version_string = NULL; 35char *client_version_string = NULL;
35char *server_version_string = NULL; 36char *server_version_string = NULL;
@@ -37,6 +38,9 @@ char *server_version_string = NULL;
37extern Options options; 38extern Options options;
38extern char *__progname; 39extern char *__progname;
39 40
41/* AF_UNSPEC or AF_INET or AF_INET6 */
42extern int IPv4or6;
43
40/* 44/*
41 * Connect to the given ssh server using a proxy command. 45 * Connect to the given ssh server using a proxy command.
42 */ 46 */