| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | | | |
|
| | | | |
|
| |\ \ \
| |_|/
|/| |
| | |
| | | |
tor-bytes: deprecate always_bug with From trait
See merge request tpo/core/arti!1500
|
| | | |
| | |
| | |
| | |
| | |
| | | |
This commit deprecates the `EncodeError::always_bug` function with a
`From<EncodeError> for Bug` trait, which is a more semantically correct
way to perform this action.
|
| |\ \ \
| |/ /
|/| |
| | |
| | | |
test: add a test for missing NETINFO cells
See merge request tpo/core/arti!1501
|
| | | |
| | |
| | |
| | |
| | |
| | | |
This commit adds a unit test to the `tor_proto::handshake` module,
which tests the behavior when no NETINFO cell is present within a
channel.
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
Resolve all warnings that appear from `maint/every-crate`
See merge request tpo/core/arti!1507
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
tor-netdir: Only select nodes that haven't been used for lower-numbered replicas.
See merge request tpo/core/arti!1494
|
| | | | | | |
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This just simplifies the expression a little bit. It still has the same
behaviour.
|
| | | | | | |
|
| | | | | |
| | | | |
| | | | |
| | | | | |
This will become useful later when we build a `HashSet` of `HsDirIndex`.
|
| | | | | | |
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
replicas.
This implements the part of the spec that says a node that has already
been selected for a lowered-numbered replica, shouldn't be considered
when choosing `spread` nodes for any other higher-numbered replicas.
Note: previously, the test added in this commit wouldn't have passed
(because `NetDir::hs_dirs` used to return duplicate relays under some
circumstances).
Part of #960
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This makes `ring_items_at()` take an extra parameter which specifies
whether an item is acceptable or not. The newly added filtering
capabilities will be used to implement the part of the spec that says
that if a node was selected for a replica, then it shouldn't be
considered when choosing `spread` nodes for any other higher-numbered
replicas.
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This updates the docs to reference the `spread` parameter (rather than
`spread_fetch`).
|
| | | | | | |
|
| | |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
The spread should be either `hsdir_spread_store` or
`hsdir_spread_fetch`, depending on whether we're uploading or
downloading descriptors.
|
| |\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
tor-hsservice: Have IptEstablisher::new() return the status watch
See merge request tpo/core/arti!1511
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The IPT manager is going to want to separate the IptEstablisher
struct (which contains the Drop signal) from the watch receiver.
We could add an accessor to clone the watch, but the copy in the
IptEstablisher would be redundant.
This makes new()'s signature a bit funky but it's an internal method
so I think that's fine.
|
| |/ / / |
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
tor-dirclient: Add support for uploading descriptors.
See merge request tpo/core/arti!1505
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
It's simpler to always use a `String` to represent directory request bodies.
We no longer need the `StringBody` trait.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
The hsdir publisher will send the `HsDescUploadRequest`s to the
appropriate directory using `send_request()`.
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Previously, the `Requestable` trait assumed the body of the request
would always be empty (`http::Request<()>`). This change replaces the
hardcoded `()` body type with the `Requestable::Body` associated type
(which will allow implementors to create requests with non-empty
bodies). This will enable us to reuse the `Requestable` trait for
building `POST` requests for uploading descriptors.
|
| | | | | |
|
| |/ / /
| | |
| | |
| | |
| | |
| | | |
`download()` is actually a general-purpose function for sending HTTP
requests on a stream. We will soon repurpose it for `POST`-ing
descriptors, so let's rename it to `send_request`.
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
tor-proto: remove unused import
See merge request tpo/core/arti!1493
|
| | |/ /
| | |
| | |
| | |
| | | |
This commit removes an unused import within the test module of the
`tor_proto::circuit` module.
|
| |\ \ \
| |_|/
|/| |
| | |
| | |
| | |
| | | |
arti-client: Make from_directories() derive the keystore_dir from state_dir.
Closes #988
See merge request tpo/core/arti!1498
|
| | | | |
|
| | |/
| |
| |
| | |
Closes #988
|
| |\ \
| | |
| | |
| | |
| | | |
Write more of IptEstablisher.
See merge request tpo/core/arti!1510
|
| | | |
| | |
| | |
| | |
| | | |
It now supports running in a loop, trying to establish an
introduction point, and reporting status.
|
| | | | |
|
| | | |
| | |
| | |
| | | |
This will help with making a keep_established method.
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | | |
Intro points must not send these extensions except in response to a
request that prompts them.
|