index
:
mirrors/arti.git
derive-traits
ios-sqlite-hacks
main
pages
mirror of https://gitlab.torproject.org/tpo/core/arti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
crates
/
arti-rpcserver
/
src
/
session.rs
Commit message (
Expand
)
Author
Age
Files
Lines
*
RPC: Remove method and object type from macros.
Nick Mathewson
2024-04-22
1
-2
/
+2
*
rpc: Move deftly attributes into an `rpc` namespace.
Nick Mathewson
2024-04-11
1
-3
/
+3
*
Globally rename rpc_invoke_fn to static_rpc_invoke_fn
Nick Mathewson
2024-04-08
1
-2
/
+2
*
Refactor: remove existence of HasConstTypeId_ as a trait
Nick Mathewson
2024-04-08
1
-3
/
+3
*
Port many of the macros in tor-rpcbase to use derive-deftly.
Nick Mathewson
2024-04-04
1
-5
/
+12
*
rpc: Fix docs typo
Nick Mathewson
2023-06-20
1
-1
/
+1
*
rpc: Document relationship between `Connection` and `RpcSession`
Ian Jackson
2023-06-16
1
-1
/
+11
*
rpc: revise session initialization a lot.
Nick Mathewson
2023-06-15
1
-8
/
+4
*
rpc: Rename Session=>RpcSession
Nick Mathewson
2023-06-15
1
-7
/
+7
*
rpc: Expose Session object.
Nick Mathewson
2023-06-15
1
-3
/
+12
*
RPC: Functionality to downcast dyn Object to a dyn Trait.
Nick Mathewson
2023-06-12
1
-8
/
+1
*
rpc: make decl_object! responsible for writing impl Object {} blocks.
Nick Mathewson
2023-06-07
1
-1
/
+1
*
RPC: Make Session objects get a GlobalId.
Nick Mathewson
2023-06-05
1
-1
/
+7
*
rpc: Remove downgrade_owned for now
Nick Mathewson
2023-05-24
1
-15
/
+0
*
rpc: Implement functionality to remove objects from a session
Nick Mathewson
2023-05-24
1
-0
/
+55
*
rpc: Make the top-level returned object a "session".
Nick Mathewson
2023-05-24
1
-0
/
+52
*
RPC: Rename session.rs to connection.rs
Nick Mathewson
2023-05-04
1
-494
/
+0
*
RPC: rename Session to Connection.
Nick Mathewson
2023-05-04
1
-41
/
+44
*
RPC: Make authentication return a TorClient.
Nick Mathewson
2023-05-04
1
-50
/
+62
*
RPC: Add "register" methods to RequestContext.
Nick Mathewson
2023-05-04
1
-0
/
+8
*
RPC: Move the "listen" part of the RPC listener code to `arti`.
Nick Mathewson
2023-05-04
1
-2
/
+25
*
rpc: Make an RpcMgr type to own the DispatchTable.
Nick Mathewson
2023-05-04
1
-10
/
+7
*
RPC: Log all internal errors.
Nick Mathewson
2023-04-19
1
-1
/
+6
*
rpcserver: Use with_fn.
Nick Mathewson
2023-04-19
1
-12
/
+7
*
rpc: Use Method types to determine type of method outputs, updates.
Nick Mathewson
2023-04-19
1
-17
/
+39
*
rpc: Split Method into DynMethod and Method
Nick Mathewson
2023-04-19
1
-7
/
+11
*
rpc: simplify API by always providing a sink.
Nick Mathewson
2023-04-16
1
-7
/
+6
*
rpc: Ensure well-ordering of responses.
Nick Mathewson
2023-04-16
1
-60
/
+88
*
rpc: Move update sink out of context.
Nick Mathewson
2023-04-16
1
-101
/
+25
*
rpc: Change `id=<SYNTAX>` to "no id".
Nick Mathewson
2023-04-13
1
-5
/
+8
*
rpc: Require that errors are RpcError.
Nick Mathewson
2023-04-13
1
-2
/
+16
*
rpc: Improve error reporting for invalid requests
Nick Mathewson
2023-04-12
1
-12
/
+34
*
arti-rpcserver: Be careful about saying "result".
Nick Mathewson
2023-04-12
1
-1
/
+1
*
arti-rpcserver: Rename Authentication{Method => Scheme}.
Nick Mathewson
2023-04-12
1
-7
/
+7
*
arti-rpcserver: rename cmd to method.
Nick Mathewson
2023-04-12
1
-2
/
+2
*
arti-rpcserver: rename command to method.
Nick Mathewson
2023-04-12
1
-11
/
+11
*
tor-rpcbase: Rename and rephrase "command" to "method"
Nick Mathewson
2023-04-12
1
-4
/
+4
*
Rename tor-rpccmd to tor-rpcbase.
Nick Mathewson
2023-04-12
1
-1
/
+1
*
rpc: Make AuthenticationMethod an enum.
Nick Mathewson
2023-04-12
1
-13
/
+20
*
rpc: Reify and expose DispatchTable.
Nick Mathewson
2023-04-12
1
-1
/
+9
*
rpc: Use Pin<Box<Stream/Sink>> for run_loop
Nick Mathewson
2023-04-12
1
-9
/
+15
*
rpc: Import Pin/Context/Poll.
Nick Mathewson
2023-04-12
1
-29
/
+13
*
rpc: Document our intended read-blocking behavior.
Nick Mathewson
2023-04-12
1
-0
/
+4
*
rpc: Rename BoxedResponseBody => ResponseBody
Nick Mathewson
2023-04-12
1
-5
/
+5
*
rpc: Remove anyhow dependency
Nick Mathewson
2023-04-12
1
-5
/
+13
*
rpc: Add standard warnings to arti-rpcserver
Nick Mathewson
2023-04-12
1
-1
/
+15
*
rpc: Add an authentication step.
Nick Mathewson
2023-04-12
1
-1
/
+70
*
rpc: Declare a trivial Echo command that works on a session.
Nick Mathewson
2023-04-12
1
-1
/
+24
*
rpc: Wire up arti-rpcserver to use tor-rpccmd.
Nick Mathewson
2023-04-12
1
-24
/
+153
*
rpc: Add a Session object and an interaction loop.
Nick Mathewson
2023-04-12
1
-0
/
+183