File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / mpd / src / ccp_deflate.h
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:32:47 2012 UTC (12 years, 5 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision


/*
 * ccp_deflate.h
 *
 * Written by Alexander Motin <mav@FreeBSD.org>
 */

#ifndef _CCP_DEFLATE_H_
#define _CCP_DEFLATE_H_

#include <netgraph/ng_message.h>
#include <netgraph/ng_deflate.h>

#include "defs.h"
#include "mbuf.h"
#include "comp.h"

/*
 * DEFINITIONS
 */

  struct deflateinfo {
	int	xmit_windowBits;
	int	recv_windowBits;
  };
  typedef struct deflateinfo	*DeflateInfo;

/*
 * VARIABLES
 */

  extern const struct comptype	gCompDeflateInfo;

#endif


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