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 (10 years, 10 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


/*
 * 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>