rumpk/vendor/lwip/contrib/apps/httpserver
Markus Maiwald 46e7be6837 feat(rumpk): Phase 7 Verified - Subject Zero Launch
- Implemented Sovereign Syscall Table at 0x801FFF00
- Added cooperative yielding (s_yield) for Guest/Kernel concurrency
- Initialized Guest RX Ring and flows in Kernel
- Bridged LwIP in Guest via net_glue and ion_client overrides
- Validated TCP handshake and data transmission (Subject Zero -> Host)
- Confirmed 'Hello from the Membrane!' via UART and Network
2025-12-31 20:18:48 +01:00
..
README feat(rumpk): Phase 7 Verified - Subject Zero Launch 2025-12-31 20:18:48 +01:00
httpserver-netconn.c feat(rumpk): Phase 7 Verified - Subject Zero Launch 2025-12-31 20:18:48 +01:00
httpserver-netconn.h feat(rumpk): Phase 7 Verified - Subject Zero Launch 2025-12-31 20:18:48 +01:00

README

HTTPSERVER

This is a demonstration of how to make the most basic kind 
of server using lWIP.

* httpserver-raw.c - uses raw TCP calls (coming soon!)

* httpserver-netconn.c - uses netconn and netbuf API

This code updates the examples in Adam Dunkel's original
lwIP documentation to match changes in the code since that
PDF release.