summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-10-03 17:34:59 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-10-03 17:34:59 +0000
commit908afed17f97a3f5814f8d0d16be27b9f487f93d (patch)
tree8d4ed0546f99b25ad8c53cd7b3e8691f1181dc93 /channels.c
parent3e45e4cd003fd9aa5ae1556afd4ba405904b761f (diff)
- markus@cvs.openbsd.org 2001/10/01 21:38:53
[channels.c channels.h ssh.c sshd.c] remove ugliness; vp@drexel.edu via angelos
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/channels.c b/channels.c
index 65cf2ab9e..12affdc34 100644
--- a/channels.c
+++ b/channels.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: channels.c,v 1.134 2001/09/17 21:04:01 markus Exp $"); 42RCSID("$OpenBSD: channels.c,v 1.135 2001/10/01 21:38:53 markus Exp $");
43 43
44#include "ssh.h" 44#include "ssh.h"
45#include "ssh1.h" 45#include "ssh1.h"
@@ -133,7 +133,7 @@ static char *auth_sock_name = NULL;
133static char *auth_sock_dir = NULL; 133static char *auth_sock_dir = NULL;
134 134
135/* AF_UNSPEC or AF_INET or AF_INET6 */ 135/* AF_UNSPEC or AF_INET or AF_INET6 */
136extern int IPv4or6; 136static int IPv4or6 = AF_UNSPEC;
137 137
138/* helper */ 138/* helper */
139static void port_open_helper(Channel *c, char *rtype); 139static void port_open_helper(Channel *c, char *rtype);
@@ -2037,6 +2037,12 @@ channel_input_port_open(int type, int plen, void *ctxt)
2037 2037
2038/* -- tcp forwarding */ 2038/* -- tcp forwarding */
2039 2039
2040void
2041channel_set_af(int af)
2042{
2043 IPv4or6 = af;
2044}
2045
2040/* 2046/*
2041 * Initiate forwarding of connections to local port "port" through the secure 2047 * Initiate forwarding of connections to local port "port" through the secure
2042 * channel to host:port from remote side. 2048 * channel to host:port from remote side.