mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- deraadt@cvs.openbsd.org 2006/03/25 18:30:55
[clientloop.c serverloop.c] spacing
This commit is contained in:
parent
8ba29fe72d
commit
90fdfaf69c
@ -153,6 +153,9 @@
|
|||||||
- deraadt@cvs.openbsd.org 2006/03/25 18:29:35
|
- deraadt@cvs.openbsd.org 2006/03/25 18:29:35
|
||||||
[auth-rsa.c authfd.c packet.c]
|
[auth-rsa.c authfd.c packet.c]
|
||||||
needed casts (always will be needed)
|
needed casts (always will be needed)
|
||||||
|
- deraadt@cvs.openbsd.org 2006/03/25 18:30:55
|
||||||
|
[clientloop.c serverloop.c]
|
||||||
|
spacing
|
||||||
|
|
||||||
20060325
|
20060325
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
@ -4410,4 +4413,4 @@
|
|||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4278 2006/03/26 03:25:19 djm Exp $
|
$Id: ChangeLog,v 1.4279 2006/03/26 03:25:37 djm Exp $
|
||||||
|
10
clientloop.c
10
clientloop.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: clientloop.c,v 1.160 2006/03/25 13:17:01 djm Exp $ */
|
/* $OpenBSD: clientloop.c,v 1.161 2006/03/25 18:30:55 deraadt Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -582,7 +582,7 @@ client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
client_process_net_input(fd_set * readset)
|
client_process_net_input(fd_set *readset)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
char buf[8192];
|
char buf[8192];
|
||||||
@ -690,7 +690,7 @@ client_extra_session2_setup(int id, void *arg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
client_process_control(fd_set * readset)
|
client_process_control(fd_set *readset)
|
||||||
{
|
{
|
||||||
Buffer m;
|
Buffer m;
|
||||||
Channel *c;
|
Channel *c;
|
||||||
@ -1184,7 +1184,7 @@ Supported escape sequences:\r\n\
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
client_process_input(fd_set * readset)
|
client_process_input(fd_set *readset)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
char buf[8192];
|
char buf[8192];
|
||||||
@ -1237,7 +1237,7 @@ client_process_input(fd_set * readset)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
client_process_output(fd_set * writeset)
|
client_process_output(fd_set *writeset)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
char buf[100];
|
char buf[100];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: serverloop.c,v 1.134 2006/03/25 13:17:02 djm Exp $ */
|
/* $OpenBSD: serverloop.c,v 1.135 2006/03/25 18:30:55 deraadt Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -355,7 +355,7 @@ wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
|
|||||||
* in buffers and processed later.
|
* in buffers and processed later.
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
process_input(fd_set * readset)
|
process_input(fd_set *readset)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
char buf[16384];
|
char buf[16384];
|
||||||
@ -414,7 +414,7 @@ process_input(fd_set * readset)
|
|||||||
* Sends data from internal buffers to client program stdin.
|
* Sends data from internal buffers to client program stdin.
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
process_output(fd_set * writeset)
|
process_output(fd_set *writeset)
|
||||||
{
|
{
|
||||||
struct termios tio;
|
struct termios tio;
|
||||||
u_char *data;
|
u_char *data;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user