2004-09-02 20:22:51 +02:00
|
|
|
/* Copyright 2003 Roger Dingledine */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file torgzip.h
|
|
|
|
* \brief Headers for torgzip.h
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __TORGZIP_H
|
|
|
|
#define __TORGZIP_H
|
2004-11-29 23:25:31 +01:00
|
|
|
#define TORGZIP_H_ID "$Id$"
|
2004-09-02 20:22:51 +02:00
|
|
|
|
2004-09-08 08:47:33 +02:00
|
|
|
typedef enum { GZIP_METHOD=1, ZLIB_METHOD=2 } compress_method_t;
|
2004-09-02 20:22:51 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
tor_gzip_compress(char **out, size_t *out_len,
|
2004-10-14 06:31:16 +02:00
|
|
|
const char *in, size_t in_len,
|
|
|
|
compress_method_t method);
|
2004-09-02 20:22:51 +02:00
|
|
|
int
|
|
|
|
tor_gzip_uncompress(char **out, size_t *out_len,
|
2004-10-14 06:31:16 +02:00
|
|
|
const char *in, size_t in_len,
|
|
|
|
compress_method_t method);
|
2004-09-02 20:22:51 +02:00
|
|
|
|
|
|
|
int is_gzip_supported(void);
|
|
|
|
|
|
|
|
#endif
|