diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-16 20:57:09 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-16 20:57:09 +0000 |
commit | 6f46316c319277d68ac44697221f1f9881c1d197 (patch) | |
tree | 6014ee9c0ef670d33cbede5d8814d245347faadb /src/or/onion.c | |
parent | 5f9ac2bdfd43c4abe354192d0c266958c0f0bc56 (diff) | |
download | tor-6f46316c319277d68ac44697221f1f9881c1d197.tar tor-6f46316c319277d68ac44697221f1f9881c1d197.tar.gz |
bugfixes and refactorings
svn:r468
Diffstat (limited to 'src/or/onion.c')
-rw-r--r-- | src/or/onion.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/onion.c b/src/or/onion.c index 5088fb59a..1c6f605a8 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -21,6 +21,11 @@ int decide_aci_type(uint32_t local_addr, uint16_t local_port, return ACI_TYPE_LOWER; } +struct onion_queue_t { + circuit_t *circ; + struct onion_queue_t *next; +}; + /* global (within this file) variables used by the next few functions */ static struct onion_queue_t *ol_list=NULL; static struct onion_queue_t *ol_tail=NULL; |