mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-03 17:13:33 +01:00
7fbd297532
svn:r3019
28 lines
624 B
C
28 lines
624 B
C
/* Copyright 2003 Roger Dingledine */
|
|
/* See LICENSE for licensing information */
|
|
/* $Id$ */
|
|
|
|
/**
|
|
* \file torgzip.h
|
|
* \brief Headers for torgzip.h
|
|
**/
|
|
|
|
#ifndef __TORGZIP_H
|
|
#define __TORGZIP_H
|
|
#define TORGZIP_H_ID "$Id$"
|
|
|
|
typedef enum { GZIP_METHOD=1, ZLIB_METHOD=2 } compress_method_t;
|
|
|
|
int
|
|
tor_gzip_compress(char **out, size_t *out_len,
|
|
const char *in, size_t in_len,
|
|
compress_method_t method);
|
|
int
|
|
tor_gzip_uncompress(char **out, size_t *out_len,
|
|
const char *in, size_t in_len,
|
|
compress_method_t method);
|
|
|
|
int is_gzip_supported(void);
|
|
|
|
#endif
|