Annotation of embedaddon/mpd/src/ccp_deflate.h, revision 1.1

1.1     ! misho       1: 
        !             2: /*
        !             3:  * ccp_deflate.h
        !             4:  *
        !             5:  * Written by Alexander Motin <mav@FreeBSD.org>
        !             6:  */
        !             7: 
        !             8: #ifndef _CCP_DEFLATE_H_
        !             9: #define _CCP_DEFLATE_H_
        !            10: 
        !            11: #include <netgraph/ng_message.h>
        !            12: #include <netgraph/ng_deflate.h>
        !            13: 
        !            14: #include "defs.h"
        !            15: #include "mbuf.h"
        !            16: #include "comp.h"
        !            17: 
        !            18: /*
        !            19:  * DEFINITIONS
        !            20:  */
        !            21: 
        !            22:   struct deflateinfo {
        !            23:        int     xmit_windowBits;
        !            24:        int     recv_windowBits;
        !            25:   };
        !            26:   typedef struct deflateinfo   *DeflateInfo;
        !            27: 
        !            28: /*
        !            29:  * VARIABLES
        !            30:  */
        !            31: 
        !            32:   extern const struct comptype gCompDeflateInfo;
        !            33: 
        !            34: #endif
        !            35: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>