aboutsummaryrefslogtreecommitdiff
path: root/crates/arti-rpcserver/src
Commit message (Expand)AuthorAgeFilesLines
...
* rpc: revise the relationship between Mgr and ConnectionNick Mathewson2023-06-142-26/+40
* RPC: Functionality to downcast dyn Object to a dyn Trait.Nick Mathewson2023-06-121-8/+1
* rpc: make decl_object! responsible for writing impl Object {} blocks.Nick Mathewson2023-06-073-4/+1
* RPC: Note a possible API change in RpcMgr::new.Nick Mathewson2023-06-051-0/+4
* RPC: Make Session objects get a GlobalId.Nick Mathewson2023-06-051-1/+7
* RPC: Give out and accept GlobalIds for appropriate objects.Nick Mathewson2023-06-053-11/+86
* RPC: Implement a "global identifier" for non-session-bound IDsNick Mathewson2023-06-054-7/+288
* rpc: Slightly refactor GenIdx encoding.Nick Mathewson2023-06-053-17/+27
* rpc: Give RpcMgr a registry of connections.Nick Mathewson2023-06-052-5/+66
* rpc: Move Arc::new() to RpcMgr code.Nick Mathewson2023-06-051-2/+2
* Merge branch 'rpc-auth-and-meta' into 'main'Nick Mathewson2023-05-245-105/+308
|\
| * rpc: Remove downgrade_owned for nowNick Mathewson2023-05-242-27/+0
| * rpc: Disable auth:get_rpc_protocol for now.Nick Mathewson2023-05-241-0/+8
| * rpc: Implement functionality to remove objects from a sessionNick Mathewson2023-05-243-5/+99
| * rpc: Make the top-level returned object a "session".Nick Mathewson2023-05-244-38/+67
| * rpc: Implement auth:query.Nick Mathewson2023-05-231-1/+39
| * rpc: Implement the auth:get_rpc_protocol method.Nick Mathewson2023-05-231-0/+49
| * rpc: move existing auth code to new module.Nick Mathewson2023-05-232-72/+84
* | rpc: Remove fake_generational_arenaNick Mathewson2023-05-231-76/+1
|/
* rpc: Split the generational index into two.Nick Mathewson2023-05-161-113/+92
* rpc: Change the formatting of object IDsNick Mathewson2023-05-151-22/+71
* rpc: rename GenIdx::into/try_from implementationsNick Mathewson2023-05-152-11/+9
* rpc: do not deduplicate strong object idsNick Mathewson2023-05-151-52/+39
* rpc: Repair an error in our ObjectId encoding.Nick Mathewson2023-05-151-1/+1
* objmap: move types to top of file.Nick Mathewson2023-05-041-74/+74
* Note/clean more TODOs in objmap.Nick Mathewson2023-05-041-1/+4
* RPC: Make the "client" return optional.Nick Mathewson2023-05-041-2/+2
* RPC: Make "Weak" and "Strong" entries separate.Nick Mathewson2023-05-041-43/+41
* Temporarily replace generational-arena with a fake version.Nick Mathewson2023-05-041-1/+77
* RPC: Rename session.rs to connection.rsNick Mathewson2023-05-044-4/+4
* RPC: rename Session to Connection.Nick Mathewson2023-05-043-45/+48
* RPC: Make authentication return a TorClient.Nick Mathewson2023-05-042-58/+66
* Add a generational arena for object mapping for RPC.Nick Mathewson2023-05-042-0/+664
* RPC: Add "register" methods to RequestContext.Nick Mathewson2023-05-041-0/+8
* RPC: Start on plumbing TorClient into our RPC codeNick Mathewson2023-05-041-3/+8
* RPC: Move the "listen" part of the RPC listener code to `arti`.Nick Mathewson2023-05-044-63/+27
* rpc: Make an RpcMgr type to own the DispatchTable.Nick Mathewson2023-05-044-12/+56
* RPC: Log all internal errors.Nick Mathewson2023-04-191-1/+6
* Arti: Add ability to remember the list of methods names.Nick Mathewson2023-04-193-12/+17
* rpcserver: Use with_fn.Nick Mathewson2023-04-191-12/+7
* rpc: Use Method types to determine type of method outputs, updates.Nick Mathewson2023-04-191-17/+39
* rpc: Split Method into DynMethod and MethodNick Mathewson2023-04-192-19/+26
* Merge branch 'rpc_refactoring_v2' into 'main'Ian Jackson2023-04-181-141/+92
|\
| * rpc: simplify API by always providing a sink.Nick Mathewson2023-04-161-7/+6
| * rpc: Ensure well-ordering of responses.Nick Mathewson2023-04-161-60/+88
| * rpc: Move update sink out of context.Nick Mathewson2023-04-161-101/+25
* | rpcserver: Fix a couple of broken rustdoc linksNick Mathewson2023-04-162-3/+5
|/
* rpc: Change `id=<SYNTAX>` to "no id".Nick Mathewson2023-04-133-14/+32
* rpc: Require that errors are RpcError.Nick Mathewson2023-04-133-7/+22
* rpc: Improve error reporting for invalid requestsNick Mathewson2023-04-127-17/+291