mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 14:23:30 +01:00
Use channel_t in cmd.c
This commit is contained in:
parent
32337502f1
commit
519c971f6a
1052
src/or/command.c
1052
src/or/command.c
File diff suppressed because it is too large
Load Diff
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user