diff options
author | Roger Dingledine <arma@torproject.org> | 2006-07-23 11:50:03 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-07-23 11:50:03 +0000 |
commit | c9b8458f5980737ae796710ab48923f3e2ecbb58 (patch) | |
tree | e539d6fe3a507f379119c02808e9cd4c8d71f0e0 | |
parent | d27cbf5d4b7723e872f2d76372496b3d159e1b45 (diff) | |
download | tor-c9b8458f5980737ae796710ab48923f3e2ecbb58.tar.gz tor-c9b8458f5980737ae796710ab48923f3e2ecbb58.zip |
publish a new descriptor after we hup. this is important if our
config has changed such that we'll want to start advertising our
dirport now, etc.
svn:r6819
-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 b0795f526b..180b15030f 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1070,6 +1070,7 @@ do_hup(void) if (server_mode(options)) { // const char *descriptor; + mark_my_descriptor_dirty(); /* Restart cpuworker and dnsworker processes, so they get up-to-date * configuration options. */ cpuworkers_rotate(); |