File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
mpd /
src /
ccp_deflate.h
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Mon Jul 22 08:44:29 2013 UTC (11 years, 8 months ago) by
misho
Branches:
mpd,
MAIN
CVS tags:
v5_9p16,
v5_9,
v5_8p7,
v5_8p1_cross,
v5_8p1,
v5_8,
v5_7p0,
v5_7,
v5_6,
HEAD
5.7
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>