cpuworker.h 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2015, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file cpuworker.h
  8. * \brief Header file for cpuworker.c.
  9. **/
  10. #ifndef TOR_CPUWORKER_H
  11. #define TOR_CPUWORKER_H
  12. void cpu_init(void);
  13. void cpuworkers_rotate(void);
  14. int connection_cpu_finished_flushing(connection_t *conn);
  15. int connection_cpu_reached_eof(connection_t *conn);
  16. int connection_cpu_process_inbuf(connection_t *conn);
  17. struct create_cell_t;
  18. int assign_onionskin_to_cpuworker(connection_t *cpuworker,
  19. or_circuit_t *circ,
  20. struct create_cell_t *onionskin);
  21. uint64_t estimated_usec_for_onionskins(uint32_t n_requests,
  22. uint16_t onionskin_type);
  23. void cpuworker_log_onionskin_overhead(int severity, int onionskin_type,
  24. const char *onionskin_type_name);
  25. #endif