diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-03-29 13:55:14 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-03-29 13:55:14 -0400 |
commit | beba70ec77a0306a7769f1bdbee839c0af8e853b (patch) | |
tree | 55e6c914838035349fe9510ac70bd1a8985a87b7 /src/or/channel.h | |
parent | 4e76b206b5fac18805a5cb2c3440dd367bd3b92d (diff) | |
download | tor-beba70ec77a0306a7769f1bdbee839c0af8e853b.tar.gz tor-beba70ec77a0306a7769f1bdbee839c0af8e853b.zip |
Don't declare "incoming_queue" in every file including channel.h
Found with my wacky symbol-usage-enforcer.
Diffstat (limited to 'src/or/channel.h')
-rw-r--r-- | src/or/channel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/channel.h b/src/or/channel.h index 129c0c2013..a8c337e107 100644 --- a/src/or/channel.h +++ b/src/or/channel.h @@ -18,7 +18,7 @@ typedef void (*channel_cell_handler_fn_ptr)(channel_t *, cell_t *); typedef void (*channel_var_cell_handler_fn_ptr)(channel_t *, var_cell_t *); struct cell_queue_entry_s; -TOR_SIMPLEQ_HEAD(chan_cell_queue, cell_queue_entry_s) incoming_queue; +TOR_SIMPLEQ_HEAD(chan_cell_queue, cell_queue_entry_s); typedef struct chan_cell_queue chan_cell_queue_t; /** |