tor  master
command.h
Go to the documentation of this file.
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-2017, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
6 
12 #ifndef TOR_COMMAND_H
13 #define TOR_COMMAND_H
14 
15 #include "channel.h"
16 
17 void command_process_cell(channel_t *chan, cell_t *cell);
21 
22 const char *cell_command_to_string(uint8_t command);
23 
24 extern uint64_t stats_n_padding_cells_processed;
25 extern uint64_t stats_n_create_cells_processed;
26 extern uint64_t stats_n_created_cells_processed;
27 extern uint64_t stats_n_relay_cells_processed;
28 extern uint64_t stats_n_destroy_cells_processed;
29 
30 #endif /* !defined(TOR_COMMAND_H) */
31 
void command_setup_listener(channel_listener_t *chan_l)
Definition: command.c:653
Definition: or.h:1177
uint64_t stats_n_relay_cells_processed
Definition: command.c:64
uint64_t stats_n_created_cells_processed
Definition: command.c:62
void command_setup_channel(channel_t *chan)
Definition: command.c:639
uint64_t stats_n_padding_cells_processed
Definition: channeltls.c:64
void command_process_var_cell(channel_t *chan, var_cell_t *cell)
Definition: command.c:219
Header file for channel.c.
const char * cell_command_to_string(uint8_t command)
Definition: command.c:81
uint64_t stats_n_destroy_cells_processed
Definition: command.c:66
Definition: channel.h:326
Definition: or.h:1185
void command_process_cell(channel_t *chan, cell_t *cell)
Definition: command.c:141
Definition: channel.h:41
uint64_t stats_n_create_cells_processed
Definition: command.c:60