Settings

Theme

Show HN: Std_net.h – Single-file cross-platform TCP networking (C/C++)

1 points by Forgret 3 months ago · 6 comments · 1 min read

Reader

GitHub: https://github.com/Ferki-git-creator/std_net

freakynit 3 months ago

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..

  • ForgretOP 3 months ago

    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.

    • freakynit 3 months ago

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

      Best wishes for the future versions..

  • ForgretOP 3 months ago

    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.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection