add another heuristic for changes stanzas
[tor.git] / src / or / cpuworker.h
blob04e37ee4590bb886496e35c7216eaa706ffdd5c5
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-2011, 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(void);
17 int connection_cpu_finished_flushing(connection_t *conn);
18 int connection_cpu_reached_eof(connection_t *conn);
19 int connection_cpu_process_inbuf(connection_t *conn);
20 int assign_onionskin_to_cpuworker(connection_t *cpuworker,
21 or_circuit_t *circ,
22 char *onionskin);
24 #endif