<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/tor-circmgr/src/path/exitpath.rs, branch arti-v0.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-v0.0.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v0.0.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2021-06-20T15:35:09Z</updated>
<entry>
<title>More tests and a little code-golf for coverage on tor-circmgr</title>
<updated>2021-06-20T15:35:09Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-06-20T15:35:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=bf251402d44b5652259b25c51c699730c5a061df'/>
<id>urn:sha1:bf251402d44b5652259b25c51c699730c5a061df</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix some warnings about needless &amp; from nightly clippy</title>
<updated>2021-06-18T11:19:24Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-06-18T11:19:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e6faeaa1f8511d49cea13358f88cb1e42ae32ec2'/>
<id>urn:sha1:e6faeaa1f8511d49cea13358f88cb1e42ae32ec2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>more improvements to circmgr tests.</title>
<updated>2021-06-16T19:22:40Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-06-16T19:22:40Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4517e6eaa20f0823460d99a1f3042c95d8d7a192'/>
<id>urn:sha1:4517e6eaa20f0823460d99a1f3042c95d8d7a192</id>
<content type='text'>
</content>
</entry>
<entry>
<title>More tests on circmgr::path.</title>
<updated>2021-06-16T19:08:52Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-06-16T19:08:52Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1b6cf24087ce237766d1792eaadff9ebb3128cd0'/>
<id>urn:sha1:1b6cf24087ce237766d1792eaadff9ebb3128cd0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Enormous tor-circmgr rewrite.</title>
<updated>2021-06-14T16:12:31Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-05-27T19:48:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=83b1150c812f756b654727041111105f30bedab0'/>
<id>urn:sha1:83b1150c812f756b654727041111105f30bedab0</id>
<content type='text'>
As with the tor-chanmgr code, the circuit manager is now implemented
using an AbstractCircMgr type that uses traits to abstract the
particular behavior of other types that it uses.  (Specifically:
circuits, building circuits, and telling whether one circuit usage
is compatible with another.)  Abstracting out the dependencies in
this ways makes it possible to test the circuit manager without
having to actually build real circuits.

This commit also introduces new behavior for handling pending
circuit requests.  Upon getting a new request, first we check to see
if there's an existing circuit we can use.  If there isn't, we look
for pending circuits and wait for them.  If there aren't any pending
circuits we can use, we launch one or more, and wait for them.

So far, that's the same as the old behavior.  But here's a change:
if, while we are waiting for some pending circuits, a different
circuit is completed, and it's one we could use, then the task that
was building _that_ circuit will tell us: "please look at this
circuit".  This gives us better changes of getting a usable circuit
fast.

Minor changes:

* The Error type in CircMgr no longer uses anyhow; several errors
  have been simplified.

* We've gotten more formal about the relationship between circuit
  usage and target usage.
</content>
</entry>
<entry>
<title>Broaden type of from_target_ports</title>
<updated>2021-05-20T18:12:45Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-05-20T18:12:45Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f4d2f6980a21757f11c2e7675eafbe4275283323'/>
<id>urn:sha1:f4d2f6980a21757f11c2e7675eafbe4275283323</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refactor TorPath code to have explicit constructors.</title>
<updated>2021-05-20T18:10:11Z</updated>
<author>
<name>Alexander Færøy</name>
<email>ahf@torproject.org</email>
</author>
<published>2021-05-20T16:26:06Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=00222dbe07ecfa5e0901076076877a4233b515a6'/>
<id>urn:sha1:00222dbe07ecfa5e0901076076877a4233b515a6</id>
<content type='text'>
This patch refactors the internal representation of the TorPath type to
use an enum for representing its state. We add explicit constructor
methods to create the different types of path's, such that client users
can write code that uses different paths based on their need.

This work was done together with Nick as part of the Arti hackathon.
</content>
</entry>
<entry>
<title>Prefer "relay" over "node" in most circumstances.</title>
<updated>2021-05-18T15:04:44Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-05-18T15:04:44Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=9e7de1a692532160362ba64b19bdbc201a726ff3'/>
<id>urn:sha1:9e7de1a692532160362ba64b19bdbc201a726ff3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Check ipv6 exit policies when trying to connect to an ipv6 port specifically</title>
<updated>2020-12-22T14:28:26Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2020-12-22T14:28:26Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=df4524d93696e9cdba212756f98fed78e2cd20b7'/>
<id>urn:sha1:df4524d93696e9cdba212756f98fed78e2cd20b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Simplification: Every relay is in the same family as itself.</title>
<updated>2020-12-17T20:32:09Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2020-12-17T20:32:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=42db4210abf01c6ebd0c9d7ae15cf144313678f2'/>
<id>urn:sha1:42db4210abf01c6ebd0c9d7ae15cf144313678f2</id>
<content type='text'>
</content>
</entry>
</feed>
