summaryrefslogtreecommitdiff
path: root/tor-dirmgr/src/bootstrap.rs
Commit message (Collapse)AuthorAgeFilesLines
* Fix some warnings about needless & from nightly clippyNick Mathewson2021-06-181-1/+1
|
* dirmgr: a couple of tiny testsNick Mathewson2021-05-031-5/+28
|
* Move timer functions into an extension trait.Nick Mathewson2021-04-171-4/+3
|
* Move around the public modules in tor_rtcompat.Nick Mathewson2021-04-171-1/+1
|
* Remove all non-runtime methods in tor_rtcompat.Nick Mathewson2021-04-161-5/+9
|
* Add a "Runtime" parameter to all the manager types.Nick Mathewson2021-04-161-12/+19
| | | | | This is a big change, but it is a step towards our goal of removing tor_rtcompat:: calls directly.
* Fix a compilation problem with async_std.Nick Mathewson2021-04-131-1/+1
| | | | Thank you, CI!
* Major revision on DirMgr logic -- almost a complete rewrite.Nick Mathewson2021-04-131-0/+278
The big idea of this revision is to separate the code that knows about doing downloads from the code that decides what to download. Later, we can make a similar change for database access. With these changes together, we can make our code much more testable, and eventually enable more download types in parallel.