aboutsummaryrefslogtreecommitdiff
path: root/tor-dirmgr/src
Commit message (Collapse)AuthorAgeFilesLines
...
* When a consensus has enough descriptors, mark it non-pending.Nick Mathewson2020-11-242-6/+52
|
* When storing consensuses, index them by the sha3 of the whole file.Nick Mathewson2020-11-234-21/+52
|
* Document and de-warning the rest of tor-dirmgrNick Mathewson2020-11-236-51/+219
|
* Less copying of the authority list.Nick Mathewson2020-11-231-31/+27
|
* A little documentation in tor-dirmgrNick Mathewson2020-11-231-14/+44
|
* Make "storage" module privateNick Mathewson2020-11-201-1/+1
|
* Remove a couple of #[allow]s.Nick Mathewson2020-11-201-7/+5
|
* Teach DirMgr to use its own NetDir, if present, to bootstrap itself.Nick Mathewson2020-11-201-7/+5
|
* Add a better way to get a shared directory out of a DirMgr.Nick Mathewson2020-11-201-16/+23
|
* Remove needless Arc<> for DirStoreHandle. And DirStoreHandle itself.Nick Mathewson2020-11-201-37/+24
|
* Move a few more responsibilities into NetDirConfig.Nick Mathewson2020-11-203-62/+121
| | | | Also start a DirMgr type.
* Move storage and config logic from netdir to dirmgr.Nick Mathewson2020-11-208-4/+1223
|
* Initial pass on directory-manager code.Nick Mathewson2020-11-191-0/+422
This code can now bootstrap from the network, cache the results, and reload from cache. There's lots more work to do here, including a big pile of tidying and refactoring and testing and documentation.