This is a raw socket HTTP server, which means it's responsible for handling the three-way handshake and constructing packets. Memory is managed using arenas.
Disable interference from the kernel TCP stack with:
sudo iptables -A OUTPUT -p tcp --tcp-flags RST RST -j DROP
Run the server and make a request:
gcc server.c && sudo ./a.out
curl localhost:8080