Tiny Http Server in C for serving static files.
- Basic MIME mapping
- Directory listing
- Low resource usage
- Support only GET requests
- Support Accept-Ranges: bytes
Compile with tcc:
tcc -c source/TinyCHttpServer.c
tcc -o TinyCHttpServer.exe TinyCHttpServer.o -lws2_32
TinyCHttpServer.exe [port_number]