diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-04-06 06:13:49 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-04-06 06:13:49 +0000 |
commit | 4453e3794a4630f7da8cde0a0aebaad628986a67 (patch) | |
tree | 4e9c55846930932d0e05f74586d9fef1540a6460 /src/or/or.h | |
parent | 2a0b1025e5b69fda664ef47f51309ae7c23384f4 (diff) | |
download | tor-4453e3794a4630f7da8cde0a0aebaad628986a67.tar tor-4453e3794a4630f7da8cde0a0aebaad628986a67.tar.gz |
Add a pointer from edge connections to their corresponding circuit (ulp!); add some debugging sanity-checking for cirid_orconn_map stuff
svn:r4024
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 1233ee721..1a07ee088 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -629,6 +629,7 @@ struct connection_t { int done_receiving; /**< For half-open connections; not used currently. */ char has_sent_end; /**< For debugging: set once we've set the stream end, and check in circuit_about_to_close_connection(). */ + struct circuit_t *on_circuit; /**< DOCDOC */ /* Used only by AP connections */ socks_request_t *socks_request; /**< SOCKS structure describing request (AP |