aboutsummaryrefslogtreecommitdiff
path: root/crates/arti-rpc-client-core/src/ll_conn
Commit message (Collapse)AuthorAgeFilesLines
* maint: Run maint/add_warning to deny string slicesClara Engler2026-06-091-0/+1
| | | | | | | | | | | | This commit executes maint/add_warning with the just added change to deny string slices except in tests. I recommend auditing this by checking out the previous commit followed by running the script yourself and then verifying that the diff is identical to this commit. This commit makes cargo clippy fail. We will add exceptions in the next commit.
* rpc: Fix up documentation linksNick Mathewson2026-03-252-1/+6
|
* rpc: tweak documentation and variable names wrt renamingNick Mathewson2026-03-252-38/+38
| | | | | | | Since we renamed PollingStream and NonblockingStream to BlockingConnection and NonblockingConnection, it no longer makes sense to refer to them as streams, or put them in variables called "stream".
* rpc: Make stream type in NonblockingConnection opaque.Nick Mathewson2026-03-252-18/+32
|
* Split ll_conn module into blocking/nonblocking layersNick Mathewson2026-03-252-0/+921
This commit is almost entirely code movement; it's probably best to review this one with --color-moved. I've had to make a field (temporarily) pub(super). The next commit will fix that.