No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / external / bsd / openssh / dist / compress.h
blob1a39470a6e47011fbcc7171b82ae731e7d941ed2
1 /* $NetBSD$ */
2 /* $OpenBSD: compress.h,v 1.12 2006/03/25 22:22:43 djm Exp $ */
4 /*
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * All rights reserved
8 * Interface to packet compression for ssh.
10 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
17 #ifndef COMPRESS_H
18 #define COMPRESS_H
20 void buffer_compress_init_send(int);
21 void buffer_compress_init_recv(void);
22 void buffer_compress_uninit(void);
23 void buffer_compress(Buffer *, Buffer *);
24 void buffer_uncompress(Buffer *, Buffer *);
26 #endif /* COMPRESS_H */