@@ -13,23 +13,18 @@ use iroh_gossip::proto::{Event as IrohEvent, TopicId};
13
13
use iroh_net:: magic_endpoint:: accept_conn;
14
14
use iroh_net:: NodeId ;
15
15
use iroh_net:: { derp:: DerpMode , key:: SecretKey , MagicEndpoint } ;
16
- use once_cell:: sync:: OnceCell ;
17
- use std:: sync:: Arc ;
18
- use tokio:: sync:: Notify ;
19
16
20
17
impl Context {
21
18
/// Create magic endpoint and gossip for the context.
22
19
pub async fn create_gossip ( & self ) -> Result < ( ) > {
23
20
let secret_key: SecretKey = self . get_or_create_iroh_keypair ( ) . await ?;
24
21
25
22
if self . endpoint . lock ( ) . await . is_some ( ) {
23
+ warn ! ( self , "Tried to create gossip even tough there still exists an instance" ) ;
26
24
return Ok ( ( ) ) ;
27
25
}
28
26
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
33
28
let endpoint = MagicEndpoint :: builder ( )
34
29
. secret_key ( secret_key)
35
30
. alpns ( vec ! [ GOSSIP_ALPN . to_vec( ) ] )
@@ -40,32 +35,15 @@ impl Context {
40
35
. context ( "Can't get parent of blob dir" ) ?
41
36
. to_path_buf ( ) ,
42
37
)
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
- } )
58
38
. bind ( 0 )
59
39
. await ?;
60
40
61
- // wait for a first endpoint update so that we know about our endpoint addresses
62
- notify. notified ( ) . await ;
63
41
64
42
// create gossip
65
43
let my_addr = endpoint. my_addr ( ) . await ?;
66
44
let gossip = Gossip :: from_endpoint ( endpoint. clone ( ) , Default :: default ( ) , & my_addr. info ) ;
67
45
68
- // spawn our endpoint loop that forwards incoming connections to the gossiper
46
+ // spawn endpoint loop that forwards incoming connections to the gossiper
69
47
let context = self . clone ( ) ;
70
48
tokio:: spawn ( endpoint_loop ( context, endpoint. clone ( ) , gossip. clone ( ) ) ) ;
71
49
0 commit comments