blob: 90b27ff58fe167ff2c640b1f489c3b742e467686 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright (c) 2003, Roger Dingledine
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
* Copyright (c) 2007-2021, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* \file compress_none.h
* \brief Header for compress_none.c
**/
#ifndef TOR_COMPRESS_NONE_H
#define TOR_COMPRESS_NONE_H
tor_compress_output_t
tor_cnone_compress_process(char **out, size_t *out_len,
const char **in, size_t *in_len,
int finish);
#endif /* !defined(TOR_COMPRESS_NONE_H) */
|