Add User-Agent Path, Parse request through
 User-Agent Header

Change-Id: I4c08eebe773beac21a96873b208e13b3a904a74b
Reviewed-on: https://git.clicks.codes/c/Clicks/BYO/HttpServer/rust/+/252
Tested-by: Skyler Grey <minion@clicks.codes>
Reviewed-by: Samuel Shuert <coded@clicks.codes>
1 file changed
tree: d2c36a4099e9abc3a20cf11ff5d4058a29c5a388
  1. .vscode/
  2. src/
  3. .envrc
  4. .gitattributes
  5. .gitignore
  6. Cargo.lock
  7. Cargo.toml
  8. codecrafters.yml
  9. flake.lock
  10. flake.nix
  11. README.md
  12. your_server.sh
README.md

progress-banner

This is a starting point for Rust solutions to the "Build Your Own HTTP server" Challenge.

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.

Note: If you're viewing this repo on GitHub, head over to codecrafters.io to try the challenge.

Passing the first stage

The entry point for your HTTP server implementation is in src/main.rs. 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 master

Time to move on to the next stage!

Stage 2 & beyond

Note: This section is for stages 2 and beyond.

  1. Ensure you have cargo (1.70) installed locally
  2. Run ./your_server.sh to run your program, which is implemented in src/main.rs. This command compiles your Rust project, so it might be slow the first time you run it. Subsequent runs will be fast.
  3. Commit your changes and run git push origin master to submit your solution to CodeCrafters. Test output will be streamed to your terminal.