diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-08-15 15:36:04 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-08-15 15:36:04 -0400 |
commit | d4634d1b72d660b1ea5ce9874fcd6b04a15968e9 (patch) | |
tree | 57ee2a0b0a1b5c41d13ac455884a826b000c675e /src/or/or.h | |
parent | 1743144c341218e4af88423cccd2bf93e72730a1 (diff) | |
parent | 1555876d5f27acaa9326045e33b6e2bfc1013c7f (diff) | |
download | tor-d4634d1b72d660b1ea5ce9874fcd6b04a15968e9.tar.gz tor-d4634d1b72d660b1ea5ce9874fcd6b04a15968e9.zip |
Merge remote-tracking branch 'majek/bug9108'
Conflicts:
src/or/circuitlist.h
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index d2f6953ab3..2daf12b82d 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2904,7 +2904,8 @@ typedef struct circuit_t { /** Unique ID for measuring tunneled network status requests. */ uint64_t dirreq_id; - struct circuit_t *next; /**< Next circuit in linked list of all circuits. */ + /** Next circuit in linked list of all circuits (global_circuitlist). */ + TOR_LIST_ENTRY(circuit_t) head; /** Next circuit in the doubly-linked ring of circuits waiting to add * cells to n_conn. NULL if we have no cells pending, or if we're not |