1999-10-27 11:42:43 +08:00
|
|
|
/*
|
1999-11-24 21:26:21 +08:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Interface to packet compression for ssh.
|
2000-04-16 09:18:38 +08:00
|
|
|
*
|
2000-09-16 10:29:08 +08:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 21:26:21 +08:00
|
|
|
*/
|
|
|
|
|
2001-07-04 12:02:36 +08:00
|
|
|
/* RCSID("$OpenBSD: compress.h,v 1.9 2001/06/26 06:32:50 itojun Exp $"); */
|
1999-10-27 11:42:43 +08:00
|
|
|
|
|
|
|
#ifndef COMPRESS_H
|
|
|
|
#define COMPRESS_H
|
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Initializes compression; level is compression level from 1 to 9 (as in
|
|
|
|
* gzip).
|
|
|
|
*/
|
2001-07-04 12:02:36 +08:00
|
|
|
void buffer_compress_init_send(int);
|
2001-04-06 07:20:46 +08:00
|
|
|
void buffer_compress_init_recv(void);
|
1999-10-27 11:42:43 +08:00
|
|
|
|
|
|
|
/* Frees any data structures allocated by buffer_compress_init. */
|
2000-12-29 06:16:00 +08:00
|
|
|
void buffer_compress_uninit(void);
|
1999-10-27 11:42:43 +08:00
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Compresses the contents of input_buffer into output_buffer. All packets
|
|
|
|
* compressed using this function will form a single compressed data stream;
|
|
|
|
* however, data will be flushed at the end of every call so that each
|
|
|
|
* output_buffer can be decompressed independently (but in the appropriate
|
|
|
|
* order since they together form a single compression stream) by the
|
|
|
|
* receiver. This appends the compressed data to the output buffer.
|
|
|
|
*/
|
2001-07-04 12:02:36 +08:00
|
|
|
void buffer_compress(Buffer *, Buffer *);
|
1999-10-27 11:42:43 +08:00
|
|
|
|
1999-11-25 08:54:57 +08:00
|
|
|
/*
|
|
|
|
* Uncompresses the contents of input_buffer into output_buffer. All packets
|
|
|
|
* uncompressed using this function will form a single compressed data
|
|
|
|
* stream; however, data will be flushed at the end of every call so that
|
|
|
|
* each output_buffer. This must be called for the same size units that the
|
|
|
|
* buffer_compress was called, and in the same order that buffers compressed
|
|
|
|
* with that. This appends the uncompressed data to the output buffer.
|
|
|
|
*/
|
2001-07-04 12:02:36 +08:00
|
|
|
void buffer_uncompress(Buffer *, Buffer *);
|
1999-10-27 11:42:43 +08:00
|
|
|
|
1999-11-24 21:26:21 +08:00
|
|
|
#endif /* COMPRESS_H */
|