Vasantha kumar

Results 8 comments of Vasantha kumar

> to throw a use case out there, I wanted to implement a simple p2p proxy, but couldn't find an obvious way to do it using libp2p. Note that this...

Open source libp2p library lets two apps connect securely using publicly hosted bootstrap servers. Instead of using a server IP, a client can just use the server’s peer certificate ID...

https://docs.ipfs.tech/how-to/modify-bootstrap-list/ These are the publicly available bootstrap servers used to build decentralized apps. Even though the libp2p transport uses UDP, it builds a reliable stream over it using QUIC protocol....

Yes working on it.. Libp2p C++ doesn't have the full spec implementation with hole punching. So trying to use the rust version of libp2p.

@RudiDeVos I tried to integrate the C++ version of libp2p but it doesn't have the latest Libp2p relay and DCUtR(UDP hole punching) protocol support. So built a libp2p rust library...

@RudiDeVos I believe there is plugin interface to extend encryption in the vnc data path. If there is interface to override the connection mechanism, then this can added as a...

Tunnel can be established over ipv6 if available, can support UDP hole punching if needed. Here is the associated code for it: https://github.com/dvasanth/kadugu-net/blob/e472395f8240f589a26a94e1f0e6155a050a0594/src/port_forwarding_server.rs#L137

You can also use the librats. Looks straightforward for compilation and they have precompiled library to test it. For librats, you can use the lib in server side for publishing...