A minimal implementation of an HTTP server and client written in C.
This project was created for educational purposes, to better understand how HTTP requests and responses work at a low level using sockets.
http_server.c→ Handles basic HTTP requests and serves static responses.http_client.c→ Connects to a server and sends HTTP requests.
gcc server.c -o servergcc client.c -o client
./server./client <IP> <PORT>