diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | includes.h | 2 | ||||
-rw-r--r-- | session.c | 2 | ||||
-rw-r--r-- | sftp.c | 2 |
4 files changed, 11 insertions, 4 deletions
@@ -55,6 +55,13 @@ | |||
55 | - markus@cvs.openbsd.org 2006/04/20 09:47:59 | 55 | - markus@cvs.openbsd.org 2006/04/20 09:47:59 |
56 | [sshconnect.c] | 56 | [sshconnect.c] |
57 | simplify; ok djm@ | 57 | simplify; ok djm@ |
58 | - djm@cvs.openbsd.org 2006/04/20 21:53:44 | ||
59 | [includes.h session.c sftp.c] | ||
60 | Switch from using pipes to socketpairs for communication between | ||
61 | sftp/scp and ssh, and between sshd and its subprocesses. This saves | ||
62 | a file descriptor per session and apparently makes userland ppp over | ||
63 | ssh work; ok markus@ deraadt@ (ID Sync only - portable makes this | ||
64 | decision on a per-platform basis) | ||
58 | 65 | ||
59 | 20060421 | 66 | 20060421 |
60 | - (djm) [Makefile.in configure.ac session.c sshpty.c] | 67 | - (djm) [Makefile.in configure.ac session.c sshpty.c] |
@@ -4566,4 +4573,4 @@ | |||
4566 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 4573 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
4567 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 4574 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
4568 | 4575 | ||
4569 | $Id: ChangeLog,v 1.4313 2006/04/23 02:08:59 djm Exp $ | 4576 | $Id: ChangeLog,v 1.4314 2006/04/23 02:10:49 djm Exp $ |
diff --git a/includes.h b/includes.h index 00076f639..c038f410e 100644 --- a/includes.h +++ b/includes.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: includes.h,v 1.39 2006/03/25 22:22:43 djm Exp $ */ | 1 | /* $OpenBSD: includes.h,v 1.40 2006/04/20 21:53:44 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: session.c,v 1.202 2006/03/25 13:17:02 djm Exp $ */ | 1 | /* $OpenBSD: session.c,v 1.203 2006/04/20 21:53:44 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
4 | * All rights reserved | 4 | * All rights reserved |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sftp.c,v 1.80 2006/03/27 23:15:46 djm Exp $ */ | 1 | /* $OpenBSD: sftp.c,v 1.81 2006/04/20 21:53:44 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> | 3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> |
4 | * | 4 | * |