compress_none.h 540 B

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