diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-06-02 02:46:04 -0700 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-06-02 02:52:40 -0700 |
commit | b0e7925c0205a68d730025cc8832110c1675cfd7 (patch) | |
tree | 9e78e3053b06ad02067d8fcf185a8a75d0f0ed9a /src/or/main.c | |
parent | a1d866edc9af82c2134590f7ee3c4e18156a655c (diff) | |
download | tor-b0e7925c0205a68d730025cc8832110c1675cfd7.tar.gz tor-b0e7925c0205a68d730025cc8832110c1675cfd7.zip |
Clear last_hid_serv_requests on SIGNAL NEWNYM
Fixes bug #3309.
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c index adbde9044f..3c84ddaa64 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -855,6 +855,7 @@ signewnym_impl(time_t now) addressmap_clear_transient(); rend_cache_purge(); rend_client_cancel_descriptor_fetches(); + rend_client_purge_last_hid_serv_requests(); time_of_last_signewnym = now; signewnym_is_pending = 0; } |