[compress.c]
     export compression streams for ssh-privsep
This commit is contained in:
Ben Lindstrom 2002-03-22 01:51:24 +00:00
parent 88aa1b4527
commit 0f345f5ee1
2 changed files with 7 additions and 4 deletions

View File

@ -56,6 +56,9 @@
- provos@cvs.openbsd.org 2002/03/18 17:25:29
[bufaux.c bufaux.h]
buffer_skip_string and extra sanity checking; needed by ssh-privsep
- provos@cvs.openbsd.org 2002/03/18 17:31:54
[compress.c]
export compression streams for ssh-privsep
20020317
- (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted,
@ -7902,4 +7905,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1941 2002/03/22 01:47:52 mouring Exp $
$Id: ChangeLog,v 1.1942 2002/03/22 01:51:24 mouring Exp $

View File

@ -12,15 +12,15 @@
*/
#include "includes.h"
RCSID("$OpenBSD: compress.c,v 1.18 2002/03/16 11:24:53 markus Exp $");
RCSID("$OpenBSD: compress.c,v 1.19 2002/03/18 17:31:54 provos Exp $");
#include "log.h"
#include "buffer.h"
#include "zlib.h"
#include "compress.h"
static z_stream incoming_stream;
static z_stream outgoing_stream;
z_stream incoming_stream;
z_stream outgoing_stream;
static int compress_init_send_called = 0;
static int compress_init_recv_called = 0;
static int inflate_failed = 0;