<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-dirclient/src, branch arti-v0.4.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.4.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v0.4.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2022-05-16T19:02:28Z</updated>
<entry>
<title>Fix a portability issue with Rust 1.56</title>
<updated>2022-05-16T19:02:28Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2022-05-16T19:02:28Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f83146bef45653ab72a938f9f938b9bd01eb138c'/>
<id>urn:sha1:f83146bef45653ab72a938f9f938b9bd01eb138c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>DirMgr: Improve display for DocSource</title>
<updated>2022-05-16T16:42:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2022-05-12T15:40:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f70ad60e6512da656d293b98e870ba21fdc491be'/>
<id>urn:sha1:f70ad60e6512da656d293b98e870ba21fdc491be</id>
<content type='text'>
(Also, implement Display for tor_dirclient::SourceInfo).
</content>
</entry>
<entry>
<title>Merge branch 'main' into 'ticket_466'</title>
<updated>2022-05-16T15:10:00Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2022-05-16T15:10:00Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fb432924a39119ccdb61e92616295024993398e3'/>
<id>urn:sha1:fb432924a39119ccdb61e92616295024993398e3</id>
<content type='text'>
# Conflicts:
#   doc/semver_status.md</content>
</entry>
<entry>
<title>clippy: Use write! rather than push_str, format</title>
<updated>2022-05-11T17:52:12Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2022-05-11T14:15:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0717595781c7fe8995316720160f1f53c6b6566f'/>
<id>urn:sha1:0717595781c7fe8995316720160f1f53c6b6566f</id>
<content type='text'>
This does involve unwrap, but of course that can't fail unless the
formats fail, which would already panic (that's implied by format!).
</content>
</entry>
<entry>
<title>dirclient: add the ability to reject circuits that are too skewed.</title>
<updated>2022-05-11T17:48:55Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2022-05-11T17:45:59Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0c939d45fc0ee6129f16c19411ec89ed482fbd8f'/>
<id>urn:sha1:0c939d45fc0ee6129f16c19411ec89ed482fbd8f</id>
<content type='text'>
This will help implement #466.
</content>
</entry>
<entry>
<title>Remove allow(clippy::disallowed_methods) lint.</title>
<updated>2022-03-30T12:55:58Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2022-03-30T12:55:58Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=700e491813f84d76446193aef7121a329b774717'/>
<id>urn:sha1:700e491813f84d76446193aef7121a329b774717</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'no-system-time' into 'main'</title>
<updated>2022-03-30T12:44:25Z</updated>
<author>
<name>eta</name>
<email>tor@eta.st</email>
</author>
<published>2022-03-30T12:44:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fd081742fa13e8464ad46123d83617165587d4f4'/>
<id>urn:sha1:fd081742fa13e8464ad46123d83617165587d4f4</id>
<content type='text'>
Don't use SystemTime::now()

Closes #306

See merge request tpo/core/arti!365</content>
</entry>
<entry>
<title>dirclient: Collect and expose peer information from errors.</title>
<updated>2022-03-21T13:06:32Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2022-03-18T16:03:48Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=acfa0f7770f0b7146908e1975d25976315bf2070'/>
<id>urn:sha1:acfa0f7770f0b7146908e1975d25976315bf2070</id>
<content type='text'>
This commit refactors the dirclient error type into two cases:
errors when constructing a circuit, and errors that occur once we
already have a one-hop circuit.  The latter can usually be
attributed to the specific cache we're talking to.

This commit also adds a function to expose the information about
which directory gave us the info.
</content>
</entry>
<entry>
<title>dirclient: Remember the source of each resposne we receive.</title>
<updated>2022-03-21T13:06:32Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2022-03-18T14:11:27Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=87a3f6b58a5e75f7060a6797b8e1b33175fd5329'/>
<id>urn:sha1:87a3f6b58a5e75f7060a6797b8e1b33175fd5329</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace manual Default and new with std derive in tor-dirclient</title>
<updated>2022-03-02T18:01:08Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2022-03-02T17:39:08Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4dfd1ef9cd41bdcab221445a558c9991c52f937d'/>
<id>urn:sha1:4dfd1ef9cd41bdcab221445a558c9991c52f937d</id>
<content type='text'>
</content>
</entry>
</feed>
