summaryrefslogtreecommitdiff
path: root/crates/tor-chanmgr/src/config.rs
Commit message (Collapse)AuthorAgeFilesLines
* Allow "clippy::single_char_pattern" in tests.Ian Jackson2022-10-121-0/+1
| | | | | | | This lint exists for perf reasons, and this is rarely relevant in tests. Using double quoted str is generally cognitively less burdensome.
* chanmgr, testing: Provide config accessor for testingIan Jackson2022-08-161-0/+8
| | | | | The top-level global config is going to want to see whether its machinations have the right effect.
* channel: Introduce padding configIan Jackson2022-08-161-6/+6
| | | | | Nothing actually reads this yet, and we also want a client-global default for padding.
* Introduce ChannelConfigIan Jackson2022-08-161-0/+45
This commit is just the necessary plumbing. The config is currently empty. We'll add something to it, for padding control, later.