From 64f92723d499eec5354b8b9e2fea7c6e3b060bf7 Mon Sep 17 00:00:00 2001 From: brian Date: Fri, 24 Mar 2000 15:39:37 +0000 Subject: Use pipe() instead of socketpair() in sshd when communicating with the client. This allows ppp/ssh style tunnels to function again. Ok'd by: markk Submitted by: markk@knigma.org --- crypto/openssh/includes.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crypto') diff --git a/crypto/openssh/includes.h b/crypto/openssh/includes.h index a20318c..7ec6e5c 100644 --- a/crypto/openssh/includes.h +++ b/crypto/openssh/includes.h @@ -63,8 +63,10 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } /* * Define this to use pipes instead of socketpairs for communicating with the * client program. Socketpairs do not seem to work on all systems. + * Although pipes are bi-directional in FreeBSD, using pipes here will + * make uni-directional ! */ -#define USE_PIPES 1 +/* #define USE_PIPES 1 */ #if defined(__FreeBSD__) && __FreeBSD__ <= 3 /* -- cgit v1.1