Implementing Peer-to-Peer Direct Messaging #5541
Replies: 2 comments 4 replies
|
Hi, I am currently developing an application with similar functionality, but there are differences in implementation details. You can check out my project here with a GUI here all on GitHub. |
|
With the help of AI, I have written a lib |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello libp2p community,
I'm currently working on a Rust-based project where I need to implement direct peer-to-peer messaging using the libp2p library.
My project already uses the libp2p gossipsub and mDNS protocols for broadcasting messages and discovering peers, respectively.
Now, I need to extend it to support direct messaging between peers.
Here's a simplified version of my current implementation:
What I've Implemented:
What I Need Help With:
I want to extend this implementation to support direct messaging between peers using a request-response pattern. I understand that the
libp2p-request-response module is suitable for this, but I'm struggling with:
Thank you for your time and assistance!
All reactions