<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/arti/src, branch arti-v1.2.4</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.4</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.4'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2024-06-03T09:47:32Z</updated>
<entry>
<title>arti: Note that auto is the same as disabled if vanguards are disabled.</title>
<updated>2024-06-03T09:47:32Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-05-14T11:11:02Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=95fa6f647bd57768703c70171bab8f7396f9f7df'/>
<id>urn:sha1:95fa6f647bd57768703c70171bab8f7396f9f7df</id>
<content type='text'>
</content>
</entry>
<entry>
<title>arti: Add vanguards settings to example config.</title>
<updated>2024-06-03T09:47:32Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-05-09T13:53:45Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=3c4ce5b17de2d090733a4fca94ba517b37e13fb3'/>
<id>urn:sha1:3c4ce5b17de2d090733a4fca94ba517b37e13fb3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>RPC: Give error from RpcMgr::new if method name is sufficiently bad.</title>
<updated>2024-05-14T13:49:44Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-14T13:46:02Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=9f50a947a9859535c02aa117fe1cd4fea4fff09b'/>
<id>urn:sha1:9f50a947a9859535c02aa117fe1cd4fea4fff09b</id>
<content type='text'>
(We don't give an error about unrecognized namespaces (for now),
since we have no way to opt in to them.)
</content>
</entry>
<entry>
<title>RPC: Enforce method name format.</title>
<updated>2024-05-14T13:39:47Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-14T13:35:19Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8da4b96991c01ff16bd1194bca77d9bedf0bb9fa'/>
<id>urn:sha1:8da4b96991c01ff16bd1194bca77d9bedf0bb9fa</id>
<content type='text'>
We need to do this carefully, since we want our system to be
extensible with new namespaces.

First, when we are constructing an RpcMgr, we _warn_ about any
method names that are misformed.

Second, we add a test in the `arti` crate to fail if any method
names are invalid.  This will only catch method names in crates that
`arti` depends on.
</content>
</entry>
<entry>
<title>RPC: Use a slightly less awful workaround in socks.rs</title>
<updated>2024-05-14T12:04:03Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-13T15:43:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1e871608451a5aa7130b6597ba745d0abb090fb3'/>
<id>urn:sha1:1e871608451a5aa7130b6597ba745d0abb090fb3</id>
<content type='text'>
The problem was that Rust won't let us say
```
 type ConnTarget&lt;R&gt; = Arc&lt;dyn ClientConnectionTarget&gt;;
```
because the R parameter wasn't used.

Previously we solved this by using a macro instead of a type
definition, which is ugly.

I had been thinking previously I would need to declare some kind of
additional wrapper type, and had shrunk from the verbosity.  But
@diziet pointed out that I could just use a 2-tuple unconditionally.

It's still not beautiful, but it is less hideous than before.
</content>
</entry>
<entry>
<title>Remove excess indentation from last commit.</title>
<updated>2024-05-14T12:04:03Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-12T17:41:43Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fdbb8c6db572aa8f8442ee7a212ba56be2dfc2b3'/>
<id>urn:sha1:fdbb8c6db572aa8f8442ee7a212ba56be2dfc2b3</id>
<content type='text'>
(This is a separate commit to make the branch more readable)
</content>
</entry>
<entry>
<title>RPC: Refactor socks interpretation to remove stream id, add isolation.</title>
<updated>2024-05-14T12:04:03Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-12T17:37:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=eda2e1b957196d7f7f59a200194a77db0dc4df67'/>
<id>urn:sha1:eda2e1b957196d7f7f59a200194a77db0dc4df67</id>
<content type='text'>
</content>
</entry>
<entry>
<title>RPC: RpcDataStream type to act as a "stream-shaped hole"</title>
<updated>2024-05-14T12:04:03Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-10T01:32:03Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d014d60e9e5fe439846e4c05fdd8e73bfc67a1fd'/>
<id>urn:sha1:d014d60e9e5fe439846e4c05fdd8e73bfc67a1fd</id>
<content type='text'>
The application creates these, using a new-stream-handle RPC command,
on an object that can actually create streams.

Then later, the application provides the (global) identity of one of
these objects when it's making a SOCKS connection.  This causes the
object to take hold of a `DataStreamCtrl`.
</content>
</entry>
<entry>
<title>RPC: Add a trait that can be the target of SOCKS requests</title>
<updated>2024-05-12T17:41:09Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-09T22:54:39Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a20973afe602d5977fd686f6e005c13a1e9d5100'/>
<id>urn:sha1:a20973afe602d5977fd686f6e005c13a1e9d5100</id>
<content type='text'>
(These will later become objects that can receive any application
request, once we have HTTP connect.)

For now, Session and TorClient implement this trait;
but soon there will be a new type to hold on to the created
DataStreamCtrl.

There are some XXXXs here, marking code that is too ugly to live.
I should fix it before I merge this branch.
</content>
</entry>
<entry>
<title>Merge branch 'new_ci_cfg_strategy' into 'main'</title>
<updated>2024-05-07T12:24:58Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-07T12:24:58Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4a4d00c68984d14aa9d0f642ee17ccf1bd1be5b4'/>
<id>urn:sha1:4a4d00c68984d14aa9d0f642ee17ccf1bd1be5b4</id>
<content type='text'>
add_warning/CI: New strategy to avoid "unexpected-cfgs" warning

Closes #1395

See merge request tpo/core/arti!2129</content>
</entry>
</feed>
