<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-proto/src/circuit/reactor.rs, branch arti-v2.0.0</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.0.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.0.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2026-01-29T16:33:21Z</updated>
<entry>
<title>proto: Rename the FWD -&gt; BWD channel</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-29T16:11:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8395864ee57c9aa91ee2aa1d8d31c58e4e364d84'/>
<id>urn:sha1:8395864ee57c9aa91ee2aa1d8d31c58e4e364d84</id>
<content type='text'>
In the backward reactor, we call this the `forward_reactor_rx` (because
it receives commands from the foward reactor), and in the forward
reactor we call it `backward_reactor_tx` (because it sends commands to
the backward reactor).
</content>
</entry>
<entry>
<title>proto: Rename chan senders and sinks for clarity</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-29T16:08:32Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f8332eda7d19136b76f58942bbb6c48c3df74070'/>
<id>urn:sha1:f8332eda7d19136b76f58942bbb6c48c3df74070</id>
<content type='text'>
We settled on

  * `inbound_chan{tx, rx}`, for the inbound channel (the channel towards
    the guard, if we are a client, or towards the client if we are a
    relay)
  * `outbound_chan{tx, rx}`, for the outbound channel (the channel
    towards the exit, if we are a middle relay)
</content>
</entry>
<entry>
<title>proto: Add a new, implementation-agnostic circuit reactor</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-12T11:03:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=93931082e06b278cf6b8fa12d613afc97ff7dbf6'/>
<id>urn:sha1:93931082e06b278cf6b8fa12d613afc97ff7dbf6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>proto: Factor ReactorResultChannel into the shared reactor module</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-21T14:16:16Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5bc82538b484986c031a56766797a8a573c09641'/>
<id>urn:sha1:5bc82538b484986c031a56766797a8a573c09641</id>
<content type='text'>
This is not just for clients!
</content>
</entry>
<entry>
<title>proto: Add a new module for the generic circuit reactor</title>
<updated>2026-01-29T16:33:21Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-01-21T18:11:48Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5fc5120dcca5b470fbc2281e47b86be7302c9d0b'/>
<id>urn:sha1:5fc5120dcca5b470fbc2281e47b86be7302c9d0b</id>
<content type='text'>
Currently empty, will be fleshed out in a future commit.
</content>
</entry>
<entry>
<title>tor-proto: Add a tunnel module.</title>
<updated>2025-02-20T20:15:12Z</updated>
<author>
<name>David Goulet</name>
<email>dgoulet@torproject.org</email>
</author>
<published>2025-02-13T16:58:04Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=31ee1dbbe88f92d99d66614d0625cb6e87d48edd'/>
<id>urn:sha1:31ee1dbbe88f92d99d66614d0625cb6e87d48edd</id>
<content type='text'>
Move StreamTarget to the tunnel module and the circuit module.

From now on streams will be implemented on tunnels, not circuits.

This moves `StreamTarget` to the tunnel module. A future change will
replace `ClientCirc` with `ClientTunnel` inside `StreamTarget`.

This is mostly code motion, best reviewed with `--color-moved`.

Signed-off-by: David Goulet &lt;dgoulet@torproject.org&gt;
</content>
</entry>
<entry>
<title>tor-proto: Change the visibility of a series of struct</title>
<updated>2025-02-20T19:12:09Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-02-13T18:56:53Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=3137265a0dc5b53a901497ed20fc07cb1796bf38'/>
<id>urn:sha1:3137265a0dc5b53a901497ed20fc07cb1796bf38</id>
<content type='text'>
We're about to need this in `tor_proto::tunnel` which is from the
Conflux work.

In the spirit of upstreaming as much as possible, it is done now.
</content>
</entry>
<entry>
<title>tor-proto: Add a newtype wrapper for LegId.</title>
<updated>2025-02-20T17:29:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-02-20T17:29:03Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b94cf8dcd602c299fa5855fabcc42d364c04f67d'/>
<id>urn:sha1:b94cf8dcd602c299fa5855fabcc42d364c04f67d</id>
<content type='text'>
We will eventually need to expose this in `tor-proto`'s public API, so
it'll need to be an opaque type.
</content>
</entry>
<entry>
<title>tor-proto: Add LegId type that can be used as a slotmap key.</title>
<updated>2025-02-20T14:12:40Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-02-20T13:55:51Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=914e6a71d3cd05ff382a5ec6328e2a72872a49c2'/>
<id>urn:sha1:914e6a71d3cd05ff382a5ec6328e2a72872a49c2</id>
<content type='text'>
This will soon be used by the reactor-internal `ConfluxSet` as a unique
identifier for the circuit legs stored in its `SlotMap`.
</content>
</entry>
<entry>
<title>tor-proto: Move CreateHandshakeWrap to reactor module (fmt).</title>
<updated>2025-02-18T12:19:31Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-02-18T12:11:55Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c2c649442637c84192659fb022b44d08e7c767f7'/>
<id>urn:sha1:c2c649442637c84192659fb022b44d08e7c767f7</id>
<content type='text'>
</content>
</entry>
</feed>
