2002-03-05 02:53:02 +01:00
|
|
|
/* $OpenBSD: compress.h,v 1.11 2002/03/04 17:27:39 stevesk Exp $ */
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01: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 03:18:38 +02:00
|
|
|
*
|
2000-09-16 04:29:08 +02: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 14:26:21 +01:00
|
|
|
*/
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
#ifndef COMPRESS_H
|
|
|
|
#define COMPRESS_H
|
|
|
|
|
2001-07-04 06:46:56 +02:00
|
|
|
void buffer_compress_init_send(int);
|
|
|
|
void buffer_compress_init_recv(void);
|
|
|
|
void buffer_compress_uninit(void);
|
|
|
|
void buffer_compress(Buffer *, Buffer *);
|
|
|
|
void buffer_uncompress(Buffer *, Buffer *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
#endif /* COMPRESS_H */
|