@smallcircles Thanks for sharing our project! We're in the prototyping (for hardware) and beta testing (for software) phase right now so any and all feedback is welcome
Posts
-
Interesting.. -
Hot take, #P2P protocols shouldn't use MDNS for peer discovery if they don't plan to use the OS provided APIs for it.@onepict @smallcircles @mauve @librecast librecast looks cool! Looking at the README and it says soon there will be tunneling added to the library so it can function as an overlay network. Is there more information on that effort? I'm working on a Wireguard based overlay network to enable remote peering between home LANs so I'm curious how librecast is solving that.
-
Hot take, #P2P protocols shouldn't use MDNS for peer discovery if they don't plan to use the OS provided APIs for it.@mauve Yes it is! Here's the relevant code but feel free to look around at the whole repo for context: https://github.com/home-cloud-io/core/blob/main/services/platform/daemon/host/mdns.go
-
Hot take, #P2P protocols shouldn't use MDNS for peer discovery if they don't plan to use the OS provided APIs for it.@mauve I tend to agree. I'm working on a project that uses mDNS and after ending up with issues with certain OS's failing to work with my Go module implementation I shifted to just doing it through Avahi on the host. It's been rock solid since.