mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-13 14:43:46 +01:00
e618c15aff
Fix some test and warn failures in last commit svn:r8665
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/* Copyright 2003 Roger Dingledine
|
|
* Copyright 2004-2006 Roger Dingledine, Nick Mathewson */
|
|
/* 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 {
|
|
NO_METHOD=0, GZIP_METHOD=1, ZLIB_METHOD=2, UNKNOWN_METHOD=3
|
|
} 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 complete_only,
|
|
int protocol_warn_level);
|
|
|
|
int is_gzip_supported(void);
|
|
|
|
compress_method_t detect_compression_method(const char *in, size_t in_len);
|
|
|
|
typedef enum {
|
|
TOR_ZLIB_OK, TOR_ZLIB_DONE, TOR_ZLIB_BUF_FULL, TOR_ZLIB_ERR
|
|
} tor_zlib_output_t;
|
|
typedef struct tor_zlib_state_t tor_zlib_state_t;
|
|
tor_zlib_state_t *tor_zlib_new(int compress, compress_method_t method);
|
|
|
|
tor_zlib_output_t tor_zlib_process(tor_zlib_state_t *state,
|
|
char **out, size_t *out_len,
|
|
const char **in, size_t *in_len,
|
|
int finish);
|
|
void tor_zlib_free(tor_zlib_state_t *state);
|
|
|
|
#endif
|
|
|