HTTP is the protocol that powers the web. In this challenge, you'll build a HTTP/1.1 server that is capable of serving multiple clients.
Along the way you'll learn about TCP servers, HTTP request syntax, and more.
The entry point for your HTTP server implementation is in src/server.cpp.
Study and uncomment the relevant code, and push your changes to pass the first
stage:
git add .
git commit -m "pass 1st stage" # any msg
git push origin masterTime to move on to the next stage!
Note: This section is for stages 2 and beyond.
- Ensure you have
cmakeinstalled locally - Run
./your_server.shto run your program, which is implemented insrc/server.cpp. - Commit your changes and run
git push origin masterto submit your solution to CodeCrafters. Test output will be streamed to your terminal.