espressif / esp-idf

Espressif IoT Development Framework. Official development framework for Espressif SoCs.
Apache License 2.0
13.33k stars 7.2k forks source link

True P2P Hole Punch for IoT to run Without Cloud Premises and or Servers (IDFGH-7411) #8989

Open filzek opened 2 years ago

filzek commented 2 years ago

In the current days IoT become a role play for smartdevices where data was collect and consumed all over the places.

Using P2P Hole Punch could makes ESP-IDF SDK to be able to allow devices to open the connection to APP side and APP side to device without need to interface to any other servers to makes the data flow.

Images, sensor data and also a VoIP two channel audio to intradevices, intra APP~Device being complete able to be non cloud dependant.

So, this request would be the awesome 2022 feature to be implement over esp-idf esp32 series.

euripedesrocha commented 2 years ago

Hi @filzek, this feature is in our pipeline, but we'll likely not work on it soon. We welcome any PR and contributions in this area.

filzek commented 3 months ago

hi @espressif-abhikroy any progress we could test on this?

david-cermak commented 3 months ago

Hi @filzek

We haven't planned to work on this feature, yet, but looked around for libraries that could be ported to ESP platform. Here's one that doesn't need any dependencies, is relatively compact and published under MPL2.0 license: https://github.com/paullouisageneau/libjuice After taking a closer look, it seems like we only need to provide netif list (similar to linux's ifaddrs.h) and getnameinfo() implementation (in both cases, a very simplified version could be provided -- 1) we usually want to use only one netif for the actual NAT traversal; 2) could simply supply inet_ntop(), no need to provide reverse DNS lookup)

we still don't plan on officially adding this to IDF, in 2024, but the juice library looks very interesting and, if you're willing to spend some time on porting it, opening a PR, testing it, we will support the effort and help with certain low level implementations.