[BACK]Return to compress.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/compress.h, Revision 1.10.2.1

1.10.2.1! jason       1: /*     $OpenBSD: compress.h,v 1.11 2002/03/04 17:27:39 stevesk Exp $   */
        !             2:
1.1       deraadt     3: /*
1.2       deraadt     4:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
                      5:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      6:  *                    All rights reserved
                      7:  * Interface to packet compression for ssh.
1.4       markus      8:  *
1.6       deraadt     9:  * As far as I am concerned, the code I have written for this software
                     10:  * can be used freely for any purpose.  Any derived versions of this
                     11:  * software must be clearly marked as such, and if the derived work is
                     12:  * incompatible with the protocol description in the RFC file, it must be
                     13:  * called by a name other than "ssh" or "Secure Shell".
1.2       deraadt    14:  */
1.1       deraadt    15:
                     16: #ifndef COMPRESS_H
                     17: #define COMPRESS_H
                     18:
1.10      markus     19: void    buffer_compress_init_send(int);
                     20: void    buffer_compress_init_recv(void);
                     21: void     buffer_compress_uninit(void);
                     22: void     buffer_compress(Buffer *, Buffer *);
                     23: void     buffer_uncompress(Buffer *, Buffer *);
1.1       deraadt    24:
1.2       deraadt    25: #endif                         /* COMPRESS_H */