We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4432902 + 1c5c1cb commit 28a3459Copy full SHA for 28a3459
parser.cpp
@@ -6,6 +6,10 @@
6
#include <algorithm>
7
#include <memory>
8
9
+
10
+// This code defines an HTTP request parser that can parse raw HTTP request strings
11
+// into structured HttpRequest objects. It includes error handling for invalid
12
+// request formats and supports parsing of request lines, headers, and bodies.
13
class HttpParserError : public std::runtime_error {
14
using std::runtime_error::runtime_error;
15
};
0 commit comments