diff options
author | David Goulet <dgoulet@torproject.org> | 2022-04-14 09:37:43 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2022-04-14 09:37:43 -0400 |
commit | dc90226cc3c7c74164f8feb1f50d2fbcf0941a9d (patch) | |
tree | f99b5178822692438a8fc4a119390e619a77b049 /src/core | |
parent | 9ac479ce1c20fd2e58528900b54d5b81bedb641d (diff) | |
parent | dd085d42f96e39f9387aa1d7a306100c0d7df305 (diff) | |
download | tor-dc90226cc3c7c74164f8feb1f50d2fbcf0941a9d.tar.gz tor-dc90226cc3c7c74164f8feb1f50d2fbcf0941a9d.zip |
Merge branch 'tor-gitlab/mr/491' into maint-0.4.5
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/or/origin_circuit_st.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/or/origin_circuit_st.h b/src/core/or/origin_circuit_st.h index c40e84aed8..ca7c4b1bef 100644 --- a/src/core/or/origin_circuit_st.h +++ b/src/core/or/origin_circuit_st.h @@ -183,6 +183,12 @@ struct origin_circuit_t { unsigned first_hop_from_controller : 1; /** + * If true, this circuit's path has been chosen, in full or in part, + * by the controller API, and it's okay to ignore checks that we'd + * usually do on the path as whole. */ + unsigned int any_hop_from_controller : 1; + + /** * Tristate variable to guard against pathbias miscounting * due to circuit purpose transitions changing the decision * of pathbias_should_count(). This variable is informational |