1162852Sdes/* $OpenBSD: compress.h,v 1.12 2006/03/25 22:22:43 djm Exp $ */
292555Sdes
357429Smarkm/*
457429Smarkm * Author: Tatu Ylonen <ylo@cs.hut.fi>
557429Smarkm * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
657429Smarkm *                    All rights reserved
757429Smarkm * Interface to packet compression for ssh.
860573Skris *
965668Skris * As far as I am concerned, the code I have written for this software
1065668Skris * can be used freely for any purpose.  Any derived versions of this
1165668Skris * software must be clearly marked as such, and if the derived work is
1265668Skris * incompatible with the protocol description in the RFC file, it must be
1365668Skris * called by a name other than "ssh" or "Secure Shell".
1457429Smarkm */
1557429Smarkm
1657429Smarkm#ifndef COMPRESS_H
1757429Smarkm#define COMPRESS_H
1857429Smarkm
1992555Sdesvoid	 buffer_compress_init_send(int);
2092555Sdesvoid	 buffer_compress_init_recv(void);
2192555Sdesvoid     buffer_compress_uninit(void);
2292555Sdesvoid     buffer_compress(Buffer *, Buffer *);
2392555Sdesvoid     buffer_uncompress(Buffer *, Buffer *);
2457429Smarkm
2557429Smarkm#endif				/* COMPRESS_H */
26