Skip to content

Commit 3ecb0be

Browse files
author
Septias
committed
fix: remove no longer needed endpoint callback
1 parent f68dfd2 commit 3ecb0be

File tree

2 files changed

+34
-32
lines changed

2 files changed

+34
-32
lines changed

Cargo.lock

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

src/peer_channels.rs

+3-25
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,18 @@ use iroh_gossip::proto::{Event as IrohEvent, TopicId};
1313
use iroh_net::magic_endpoint::accept_conn;
1414
use iroh_net::NodeId;
1515
use iroh_net::{derp::DerpMode, key::SecretKey, MagicEndpoint};
16-
use once_cell::sync::OnceCell;
17-
use std::sync::Arc;
18-
use tokio::sync::Notify;
1916

2017
impl Context {
2118
/// Create magic endpoint and gossip for the context.
2219
pub async fn create_gossip(&self) -> Result<()> {
2320
let secret_key: SecretKey = self.get_or_create_iroh_keypair().await?;
2421

2522
if self.endpoint.lock().await.is_some() {
23+
warn!(self, "Tried to create gossip even tough there still exists an instance");
2624
return Ok(());
2725
}
2826

29-
// setup a notification to emit once the initial endpoints of our local node are discovered
30-
let notify = Arc::new(Notify::new());
31-
32-
// build our magic endpoint
27+
// build magic endpoint
3328
let endpoint = MagicEndpoint::builder()
3429
.secret_key(secret_key)
3530
.alpns(vec![GOSSIP_ALPN.to_vec()])
@@ -40,32 +35,15 @@ impl Context {
4035
.context("Can't get parent of blob dir")?
4136
.to_path_buf(),
4237
)
43-
.on_endpoints({
44-
let gossip_cell: OnceCell<Gossip> = todo!();
45-
let notify = notify.clone();
46-
Box::new(move |endpoints| {
47-
if endpoints.is_empty() {
48-
return;
49-
}
50-
// send our updated endpoints to the gossip protocol to be sent as NodeAddr to peers
51-
if let Some(gossip) = gossip_cell.get() {
52-
gossip.update_endpoints(endpoints).ok();
53-
}
54-
// notify the outer task of the initial endpoint update (later updates are not interesting)
55-
notify.notify_one();
56-
})
57-
})
5838
.bind(0)
5939
.await?;
6040

61-
// wait for a first endpoint update so that we know about our endpoint addresses
62-
notify.notified().await;
6341

6442
// create gossip
6543
let my_addr = endpoint.my_addr().await?;
6644
let gossip = Gossip::from_endpoint(endpoint.clone(), Default::default(), &my_addr.info);
6745

68-
// spawn our endpoint loop that forwards incoming connections to the gossiper
46+
// spawn endpoint loop that forwards incoming connections to the gossiper
6947
let context = self.clone();
7048
tokio::spawn(endpoint_loop(context, endpoint.clone(), gossip.clone()));
7149

0 commit comments

Comments
 (0)