Cannot make the the universal-connectivity work (rust, WIndows) #6050
-
I've opened an issue for the rust implementation of the universal connectivity on the repo, 3 weeks ago. Apart from that, which highlights a component Other implementation of the universal connectivity work, like the go example. But for the rust example it does not. Is it just a Windows problem? Or is it a known problem? What I did:
I'm a noob when it come to rust, so it is entirely possible that I made some kind of mistake. Let me know if it's a problem that happens only to me, or if others have the same problem. As a Side NoteIs there a basic DHT rust-example for Node-Discovery. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Did you see your Peer ID printed? Like
Which means the signal will only be captured once before entering main loop, not during execution. It also causes
Also if you want to explore rust-libp2p with GUI, check out my little project #6014 🌟 |
Beta Was this translation helpful? Give feedback.
Did you see your Peer ID printed? Like
My Peer ID: 12D3KooWDFfq1z9RCUrFmSWhchK8UQDNSznMJhPLBiqPtFQu8QzL
. I think your code has some problems.Which means the signal will only be captured once before entering main loop, not during execution. It …