# Http server in C An extremely simple http server written in C. ## Features - [x] Sending a basic response - [ ] Parsing the request type - [x] Parsing the request path - [ ] Parsing the request headers - [ ] Parsing the request body - [ ] Making a static http file server ## Usage ```bash mkdir build cd build cmake .. make ./http_server ```