blob: e028f71a5797ec7b3eb201063425f7bb4513eed0 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 *
3 * compress.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Wed Oct 25 22:12:46 1995 ylo
11 *
12 * Interface to packet compression for ssh.
13 *
14 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Miller95def091999-11-25 00:26:21 +110016/* RCSID("$Id: compress.h,v 1.2 1999/11/24 13:26:22 damien Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#ifndef COMPRESS_H
19#define COMPRESS_H
20
21/* Initializes compression; level is compression level from 1 to 9 (as in
22 gzip). */
Damien Miller95def091999-11-25 00:26:21 +110023void buffer_compress_init(int level);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024
25/* Frees any data structures allocated by buffer_compress_init. */
Damien Miller95def091999-11-25 00:26:21 +110026void buffer_compress_uninit();
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027
28/* Compresses the contents of input_buffer into output_buffer. All
29 packets compressed using this function will form a single
30 compressed data stream; however, data will be flushed at the end of
31 every call so that each output_buffer can be decompressed
32 independently (but in the appropriate order since they together
33 form a single compression stream) by the receiver. This appends
34 the compressed data to the output buffer. */
Damien Miller95def091999-11-25 00:26:21 +110035void buffer_compress(Buffer * input_buffer, Buffer * output_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
37/* Uncompresses the contents of input_buffer into output_buffer. All
38 packets uncompressed using this function will form a single
39 compressed data stream; however, data will be flushed at the end of
40 every call so that each output_buffer. This must be called for the
41 same size units that the buffer_compress was called, and in the
42 same order that buffers compressed with that. This appends the
43 uncompressed data to the output buffer. */
Damien Miller95def091999-11-25 00:26:21 +110044void buffer_uncompress(Buffer * input_buffer, Buffer * output_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Damien Miller95def091999-11-25 00:26:21 +110046#endif /* COMPRESS_H */