Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/blog/iroh-0-94-0-the-endpoint-takeover/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ We have a bunch of API changes and features for you in this one, all of which ar

* New defaults for Discovery

* Updated `EndpointAddr` (rpPreviously `NodeAddr`) to support additional transports
* Updated `EndpointAddr` (Previously `NodeAddr`) to support additional transports

* `iroh-base::ticket` has moved to its own `iroh-tickets` crate!

Expand Down
2 changes: 1 addition & 1 deletion src/app/docs/concepts/discovery/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ DHT Discovery is _not_ enabled by default, and must be enabled by the user. You'
iroh = { version = "0.nn", features = ["discovery-pkarr-dht"] }
```

Then configure your endpoint to use DHT discovery concurrently with mDNS discovery, but not with the default DNS discovery, use the `Endpoint::empty_builder` method. This requires specifiying a `RelayMode`, which in this example we will keep default.
Then configure your endpoint to use DHT discovery concurrently with mDNS discovery, but not with the default DNS discovery, use the `Endpoint::empty_builder` method. This requires specifying a `RelayMode`, which in this example we will keep default.

```rust
use iroh::Endpoint;
Expand Down
Loading