mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Block managed proxies at a higher point
This commit is contained in:
parent
801aa5d03b
commit
5fa8d05bfa
@ -5741,6 +5741,15 @@ parse_transport_line(const or_options_t *options,
|
||||
goto err;
|
||||
}
|
||||
|
||||
if (is_managed && options->NoExec) {
|
||||
log_warn(LD_CONFIG,
|
||||
"Managed proxies are not compatible with NoExec mode; ignoring."
|
||||
"(%sTransportPlugin line was %s)",
|
||||
server ? "Server" : "Client", escaped(line));
|
||||
r = 0;
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (is_managed) {
|
||||
/* managed */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user