summaryrefslogtreecommitdiff
path: root/compress.h
diff options
context:
space:
mode:
Diffstat (limited to 'compress.h')
-rw-r--r--compress.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/compress.h b/compress.h
index f90932a6f..a9d06fc05 100644
--- a/compress.h
+++ b/compress.h
@@ -11,7 +11,7 @@
11 * called by a name other than "ssh" or "Secure Shell". 11 * called by a name other than "ssh" or "Secure Shell".
12 */ 12 */
13 13
14/* RCSID("$OpenBSD: compress.h,v 1.8 2001/04/05 10:39:02 markus Exp $"); */ 14/* RCSID("$OpenBSD: compress.h,v 1.9 2001/06/26 06:32:50 itojun Exp $"); */
15 15
16#ifndef COMPRESS_H 16#ifndef COMPRESS_H
17#define COMPRESS_H 17#define COMPRESS_H
@@ -20,7 +20,7 @@
20 * Initializes compression; level is compression level from 1 to 9 (as in 20 * Initializes compression; level is compression level from 1 to 9 (as in
21 * gzip). 21 * gzip).
22 */ 22 */
23void buffer_compress_init_send(int level); 23void buffer_compress_init_send(int);
24void buffer_compress_init_recv(void); 24void buffer_compress_init_recv(void);
25 25
26/* Frees any data structures allocated by buffer_compress_init. */ 26/* Frees any data structures allocated by buffer_compress_init. */
@@ -34,7 +34,7 @@ void buffer_compress_uninit(void);
34 * order since they together form a single compression stream) by the 34 * order since they together form a single compression stream) by the
35 * receiver. This appends the compressed data to the output buffer. 35 * receiver. This appends the compressed data to the output buffer.
36 */ 36 */
37void buffer_compress(Buffer * input_buffer, Buffer * output_buffer); 37void buffer_compress(Buffer *, Buffer *);
38 38
39/* 39/*
40 * Uncompresses the contents of input_buffer into output_buffer. All packets 40 * Uncompresses the contents of input_buffer into output_buffer. All packets
@@ -44,6 +44,6 @@ void buffer_compress(Buffer * input_buffer, Buffer * output_buffer);
44 * buffer_compress was called, and in the same order that buffers compressed 44 * buffer_compress was called, and in the same order that buffers compressed
45 * with that. This appends the uncompressed data to the output buffer. 45 * with that. This appends the uncompressed data to the output buffer.
46 */ 46 */
47void buffer_uncompress(Buffer * input_buffer, Buffer * output_buffer); 47void buffer_uncompress(Buffer *, Buffer *);
48 48
49#endif /* COMPRESS_H */ 49#endif /* COMPRESS_H */