aboutsummaryrefslogtreecommitdiff
path: root/src/or/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/command.h')
-rw-r--r--src/or/command.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/or/command.h b/src/or/command.h
index 078ccc9f5d..eddce8741b 100644
--- a/src/or/command.h
+++ b/src/or/command.h
@@ -12,8 +12,12 @@
#ifndef _TOR_COMMAND_H
#define _TOR_COMMAND_H
-void command_process_cell(cell_t *cell, or_connection_t *conn);
-void command_process_var_cell(var_cell_t *cell, or_connection_t *conn);
+#include "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_t *chan);
extern uint64_t stats_n_padding_cells_processed;
extern uint64_t stats_n_create_cells_processed;