diff options
Diffstat (limited to 'src/core/or/command.h')
-rw-r--r-- | src/core/or/command.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/core/or/command.h b/src/core/or/command.h new file mode 100644 index 0000000000..864a5b2fd0 --- /dev/null +++ b/src/core/or/command.h @@ -0,0 +1,31 @@ +/* Copyright (c) 2001 Matej Pfajfar. + * Copyright (c) 2001-2004, Roger Dingledine. + * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. + * Copyright (c) 2007-2018, The Tor Project, Inc. */ +/* See LICENSE for licensing information */ + +/** + * \file command.h + * \brief Header file for command.c. + **/ + +#ifndef TOR_COMMAND_H +#define TOR_COMMAND_H + +#include "or/channel.h" + +void command_process_cell(channel_t *chan, cell_t *cell); +void command_process_var_cell(channel_t *chan, var_cell_t *cell); +void command_setup_channel(channel_t *chan); +void command_setup_listener(channel_listener_t *chan_l); + +const char *cell_command_to_string(uint8_t command); + +extern uint64_t stats_n_padding_cells_processed; +extern uint64_t stats_n_create_cells_processed; +extern uint64_t stats_n_created_cells_processed; +extern uint64_t stats_n_relay_cells_processed; +extern uint64_t stats_n_destroy_cells_processed; + +#endif /* !defined(TOR_COMMAND_H) */ + |