=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/compress.c,v retrieving revision 1.14.2.3 retrieving revision 1.15 diff -u -r1.14.2.3 -r1.15 --- src/usr.bin/ssh/Attic/compress.c 2002/06/02 22:56:10 1.14.2.3 +++ src/usr.bin/ssh/Attic/compress.c 2001/09/27 11:58:16 1.15 @@ -12,19 +12,17 @@ */ #include "includes.h" -RCSID("$OpenBSD: compress.c,v 1.14.2.3 2002/06/02 22:56:10 miod Exp $"); +RCSID("$OpenBSD: compress.c,v 1.15 2001/09/27 11:58:16 markus Exp $"); #include "log.h" #include "buffer.h" #include "zlib.h" #include "compress.h" -z_stream incoming_stream; -z_stream outgoing_stream; +static z_stream incoming_stream; +static z_stream outgoing_stream; static int compress_init_send_called = 0; static int compress_init_recv_called = 0; -static int inflate_failed = 0; -static int deflate_failed = 0; /* * Initializes compression; level is compression level from 1 to 9 @@ -57,16 +55,16 @@ buffer_compress_uninit(void) { debug("compress outgoing: raw data %lu, compressed %lu, factor %.2f", - outgoing_stream.total_in, outgoing_stream.total_out, - outgoing_stream.total_in == 0 ? 0.0 : - (double) outgoing_stream.total_out / outgoing_stream.total_in); + outgoing_stream.total_in, outgoing_stream.total_out, + outgoing_stream.total_in == 0 ? 0.0 : + (double) outgoing_stream.total_out / outgoing_stream.total_in); debug("compress incoming: raw data %lu, compressed %lu, factor %.2f", - incoming_stream.total_out, incoming_stream.total_in, - incoming_stream.total_out == 0 ? 0.0 : - (double) incoming_stream.total_in / incoming_stream.total_out); - if (compress_init_recv_called == 1 && inflate_failed == 0) + incoming_stream.total_out, incoming_stream.total_in, + incoming_stream.total_out == 0 ? 0.0 : + (double) incoming_stream.total_in / incoming_stream.total_out); + if (compress_init_recv_called == 1) inflateEnd(&incoming_stream); - if (compress_init_send_called == 1 && deflate_failed == 0) + if (compress_init_send_called == 1) deflateEnd(&outgoing_stream); } @@ -82,7 +80,7 @@ void buffer_compress(Buffer * input_buffer, Buffer * output_buffer) { - u_char buf[4096]; + char buf[4096]; int status; /* This case is not handled below. */ @@ -90,13 +88,13 @@ return; /* Input is the contents of the input buffer. */ - outgoing_stream.next_in = buffer_ptr(input_buffer); + outgoing_stream.next_in = (u_char *) buffer_ptr(input_buffer); outgoing_stream.avail_in = buffer_len(input_buffer); /* Loop compressing until deflate() returns with avail_out != 0. */ do { /* Set up fixed-size output buffer. */ - outgoing_stream.next_out = buf; + outgoing_stream.next_out = (u_char *)buf; outgoing_stream.avail_out = sizeof(buf); /* Compress as much data into the buffer as possible. */ @@ -108,7 +106,6 @@ sizeof(buf) - outgoing_stream.avail_out); break; default: - deflate_failed = 1; fatal("buffer_compress: deflate returned %d", status); /* NOTREACHED */ } @@ -127,15 +124,15 @@ void buffer_uncompress(Buffer * input_buffer, Buffer * output_buffer) { - u_char buf[4096]; + char buf[4096]; int status; - incoming_stream.next_in = buffer_ptr(input_buffer); + incoming_stream.next_in = (u_char *) buffer_ptr(input_buffer); incoming_stream.avail_in = buffer_len(input_buffer); for (;;) { /* Set up fixed-size output buffer. */ - incoming_stream.next_out = buf; + incoming_stream.next_out = (u_char *) buf; incoming_stream.avail_out = sizeof(buf); status = inflate(&incoming_stream, Z_PARTIAL_FLUSH); @@ -152,7 +149,6 @@ */ return; default: - inflate_failed = 1; fatal("buffer_uncompress: inflate returned %d", status); /* NOTREACHED */ }