Hacker News new | ask | show | jobs
Show HN: Std_net.h – Single-file cross-platform TCP networking (C/C++)
1 points by Forgret 277 days ago
GitHub: https://github.com/Ferki-git-creator/std_net
1 comments

Hi... this is amazing.

What it would take for such a thing to be able to run on small microcontrollers with integrated wifi? For example esp32?

Second, what about bare-metal?

Thanks..

Hi! Thanks for the feedback. To be honest, the current version of std_net won’t run directly on ESP32 or bare-metal — it relies on standard BSD sockets and a full OS environment.

That said, it can serve as a basis:

On ESP32, you could adapt it to use LWIP sockets via ESP-IDF or Arduino, implement non-blocking I/O with FreeRTOS tasks, and reduce buffer sizes.

On bare-metal, it would require a lightweight TCP/IP stack (like lwIP or uIP) and rewriting functions to be fully event-driven and minimal on dynamic memory.

Also, please keep in mind this was the first version — mainly to see if the library idea resonates. I didn’t plan to make it fully optimized or MCU-ready yet. Future versions will definitely include improvements for embedded environments.

Thanks for the reply. And the first version resonated really well. At least with me :)

Best wishes for the future versions..

Don't worry, I'm already starting work on improving it, your comment motivated me, so maybe in 1 day I'll make what you wanted possible.
Awesome!! Thank you so much. And glad it was motivating too :)