fix typo
[tor.git] / src / or / cpuworker.h
blob62cf0eb1648080763652781da6a22bc5901458a9
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-2016, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
7 /**
8 * \file cpuworker.h
9 * \brief Header file for cpuworker.c.
10 **/
12 #ifndef TOR_CPUWORKER_H
13 #define TOR_CPUWORKER_H
15 void cpu_init(void);
16 void cpuworkers_rotate_keyinfo(void);
18 struct create_cell_t;
19 int assign_onionskin_to_cpuworker(or_circuit_t *circ,
20 struct create_cell_t *onionskin);
22 uint64_t estimated_usec_for_onionskins(uint32_t n_requests,
23 uint16_t onionskin_type);
24 void cpuworker_log_onionskin_overhead(int severity, int onionskin_type,
25 const char *onionskin_type_name);
26 void cpuworker_cancel_circ_handshake(or_circuit_t *circ);
28 #endif