Skip to content

Commit 6c6827d

Browse files
refactor(iroh): move ProtocolHandler impl to iroh-gossip (#2849)
Depends on n0-computer/iroh-gossip#3
1 parent bfba7a4 commit 6c6827d

File tree

7 files changed

+9
-35
lines changed

7 files changed

+9
-35
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,4 @@ iroh-test = { path = "./iroh-test" }
5353
iroh-router = { path = "./iroh-router" }
5454

5555
iroh-blobs = { git = "https://github.com/n0-computer/iroh-blobs", branch = "main" }
56+
iroh-gossip = { git = "https://github.com/n0-computer/iroh-gossip", branch = "main" }

deny.toml

+1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ ignore = [
3838
[sources]
3939
allow-git = [
4040
"https://github.com/n0-computer/iroh-blobs.git",
41+
"https://github.com/n0-computer/iroh-gossip.git",
4142
]

iroh/src/node/builder.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ use tokio::task::JoinError;
3333
use tokio_util::{sync::CancellationToken, task::AbortOnDropHandle};
3434
use tracing::{debug, error_span, trace, Instrument};
3535

36-
use super::{
37-
protocol::gossip::GossipProtocol, rpc_status::RpcStatus, IrohServerEndpoint, JoinErrToStr,
38-
Node, NodeInner,
39-
};
36+
use super::{rpc_status::RpcStatus, IrohServerEndpoint, JoinErrToStr, Node, NodeInner};
4037
use crate::{
4138
client::RPC_ALPN,
4239
node::{
@@ -826,7 +823,7 @@ impl<D: iroh_blobs::store::Store> ProtocolBuilder<D> {
826823
self = self.accept(iroh_blobs::protocol::ALPN.to_vec(), Arc::new(blobs_proto));
827824

828825
// Register gossip.
829-
self = self.accept(GOSSIP_ALPN.to_vec(), Arc::new(GossipProtocol(gossip)));
826+
self = self.accept(GOSSIP_ALPN.to_vec(), Arc::new(gossip));
830827

831828
// Register docs, if enabled.
832829
if let Some(docs) = docs {

iroh/src/node/protocol.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
pub(crate) mod blobs;
22
pub(crate) mod docs;
3-
pub(crate) mod gossip;

iroh/src/node/protocol/gossip.rs

-24
This file was deleted.

iroh/src/node/rpc.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use iroh_blobs::{
2727
BlobFormat, HashAndFormat, Tag,
2828
};
2929
use iroh_docs::net::DOCS_ALPN;
30-
use iroh_gossip::net::GOSSIP_ALPN;
30+
use iroh_gossip::net::{Gossip, GOSSIP_ALPN};
3131
use iroh_io::AsyncSliceReader;
3232
use iroh_net::{relay::RelayUrl, NodeAddr, NodeId};
3333
use iroh_router::Router;
@@ -44,7 +44,7 @@ use crate::{
4444
NodeStatus,
4545
},
4646
node::{
47-
protocol::{blobs::BlobsProtocol, docs::DocsProtocol, gossip::GossipProtocol},
47+
protocol::{blobs::BlobsProtocol, docs::DocsProtocol},
4848
NodeInner,
4949
},
5050
rpc_protocol::{
@@ -257,7 +257,7 @@ impl<D: BaoStore> Handler<D> {
257257
chan.bidi_streaming(msg, self, |handler, req, updates| {
258258
let stream = handler
259259
.router
260-
.get_protocol::<GossipProtocol>(GOSSIP_ALPN)
260+
.get_protocol::<Gossip>(GOSSIP_ALPN)
261261
.expect("missing gossip")
262262
.join_with_stream(
263263
req.topic,

0 commit comments

Comments
 (0)