aboutsummaryrefslogtreecommitdiff
path: root/src/or/transports.h
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2014-04-08 17:22:36 +0100
committerNick Mathewson <nickm@torproject.org>2014-04-23 11:05:45 -0400
commitfa0c5da68ba472eed004cd87f198854885cff453 (patch)
treeaf251a9c7bd0297f8d218b53f4014d5b7616c6e3 /src/or/transports.h
parentbf7cb6acf66abf3a9aa4be6819e6cf160579dab0 (diff)
downloadtor-fa0c5da68ba472eed004cd87f198854885cff453.tar.gz
tor-fa0c5da68ba472eed004cd87f198854885cff453.zip
Rename the got_hup element of managed proxies.
Since we need to toggle that element in non-SIGHUP situations too where the config was re-read (like in SETCONF or RESETCONF).
Diffstat (limited to 'src/or/transports.h')
-rw-r--r--src/or/transports.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/transports.h b/src/or/transports.h
index 7b524f2073..1365ead006 100644
--- a/src/or/transports.h
+++ b/src/or/transports.h
@@ -97,7 +97,7 @@ typedef struct {
* this flag to signify that this proxy might need to be restarted
* so that it can listen for other transports according to the new
* torrc. */
- unsigned int got_hup : 1;
+ unsigned int was_around_before_config_read : 1;
/* transports to-be-launched by this proxy */
smartlist_t *transports_to_launch;