diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-12-16 08:37:40 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-12-16 08:37:40 -0500 |
commit | a03469aa851bf6e658d539e95b5f1e786f9622bc (patch) | |
tree | 269cefc4d96c58fdb88650d3a15ac9d4f6bcd1b5 /src/or/or.h | |
parent | a4ca2ef1fffec0181b18f24a4aaaa71856108ce2 (diff) | |
download | tor-a03469aa851bf6e658d539e95b5f1e786f9622bc.tar.gz tor-a03469aa851bf6e658d539e95b5f1e786f9622bc.zip |
More debugging code to try to track down #17659
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index e92a4bba39..e621fe9708 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1646,6 +1646,13 @@ typedef struct entry_connection_t { * request that we're going to try to answer. */ struct evdns_server_request *dns_server_request; +#define DEBUGGING_17659 + +#ifdef DEBUGGING_17659 + uint16_t marked_pending_circ_line; + const char *marked_pending_circ_file; +#endif + #define NUM_CIRCUITS_LAUNCHED_THRESHOLD 10 /** Number of times we've launched a circuit to handle this stream. If * it gets too high, that could indicate an inconsistency between our |