summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/channels.c b/channels.c
index 254f5df2f..a7da538ee 100644
--- a/channels.c
+++ b/channels.c
@@ -40,24 +40,24 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: channels.c,v 1.80 2001/01/08 22:03:23 markus Exp $"); 43RCSID("$OpenBSD: channels.c,v 1.82 2001/01/21 19:05:46 markus Exp $");
44
45#include <openssl/rsa.h>
46#include <openssl/dsa.h>
44 47
45#include "ssh.h" 48#include "ssh.h"
49#include "ssh1.h"
50#include "ssh2.h"
46#include "packet.h" 51#include "packet.h"
47#include "xmalloc.h" 52#include "xmalloc.h"
48#include "buffer.h" 53#include "buffer.h"
49#include "uidswap.h" 54#include "uidswap.h"
50#include "readconf.h" 55#include "log.h"
51#include "servconf.h" 56#include "misc.h"
52
53#include "channels.h" 57#include "channels.h"
54#include "nchan.h" 58#include "nchan.h"
55#include "compat.h" 59#include "compat.h"
56 60#include "canohost.h"
57#include "ssh2.h"
58
59#include <openssl/rsa.h>
60#include <openssl/dsa.h>
61#include "key.h" 61#include "key.h"
62#include "authfd.h" 62#include "authfd.h"
63 63
@@ -130,6 +130,9 @@ static int all_opens_permitted = 0;
130/* This is set to true if both sides support SSH_PROTOFLAG_HOST_IN_FWD_OPEN. */ 130/* This is set to true if both sides support SSH_PROTOFLAG_HOST_IN_FWD_OPEN. */
131static int have_hostname_in_open = 0; 131static int have_hostname_in_open = 0;
132 132
133/* AF_UNSPEC or AF_INET or AF_INET6 */
134extern int IPv4or6;
135
133/* Sets specific protocol options. */ 136/* Sets specific protocol options. */
134 137
135void 138void