summaryrefslogtreecommitdiff
path: root/crates/arti-config/src/arti_defaults.toml
Commit message (Collapse)AuthorAgeFilesLines
* Rename .gitignore APP_FOO to ARTI_FOO.Nick Mathewson2021-11-211-4/+4
| | | | | | | | Since these shell-variables are hardwired to use org.torproject.Arti as the program name, it isn't appropriate to call them "app-specific". If we someday reinstate APP_FOO, it should be based on a user-provided application name.
* Rename RetryConfig to DownloadSchedule, fold in parallelism.Nick Mathewson2021-11-181-6/+4
|
* Move the socks_port option into a new proxy section.Nick Mathewson2021-11-181-0/+2
| | | | Now there are no options that aren't in a toml section.
* Rename addr_config to address_filter; clarify its usage.Nick Mathewson2021-11-181-2/+3
|
* Flatten enforce_distance into path_rules.Nick Mathewson2021-11-181-2/+3
| | | | Also use the path_rules name consistently throughout the code.
* Fold "circuit_timing" and "request_timing" into a single section.Nick Mathewson2021-11-181-4/+2
|
* Move top-level configuration downwards from `arti` to `arti-config`.Nick Mathewson2021-11-181-0/+112
To do this at all neatly, I had to split out `tor-config` from `arti-config` again, and putting the lower level stuff (paths, builder errors) into tor-config. I also changed our use of derive_builder to always use a common error type, to avoid error type proliferation.