An http parser written in C++ for learning purposes.
Find a file
2025-11-07 21:18:14 +05:00
.clang-format Setup basic tcp connection, added used commands to readme 2025-11-07 21:18:14 +05:00
.gitignore Initial commit 2025-11-06 20:22:06 +05:00
LICENSE Initial commit 2025-11-06 20:22:06 +05:00
main.cpp Setup basic tcp connection, added used commands to readme 2025-11-07 21:18:14 +05:00
README.md Setup basic tcp connection, added used commands to readme 2025-11-07 21:18:14 +05:00

http-parser-cpp

An http parser written in C++ for learning purposes.

Commands for Testing

  • $ podman run --security-opt label=disable --rm -p 8080:80 docker.io/kennethreitz/httpbin

    • For running a local http server
  • sudo tcpdump -i lo -s 0 -A 'tcp port 8080'

    • Monitor the tcp traffic
  • clang-format -style=microsoft -dump-config > .clang-format

    • For LSP autofotmat