Skip to content

Commit 28a3459

Browse files
authored
Merge pull request #8 from copyleftdev/added-simple-change
Auto-merge PR #8: added simple comment
2 parents 4432902 + 1c5c1cb commit 28a3459

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

parser.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
#include <algorithm>
77
#include <memory>
88

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.
913
class HttpParserError : public std::runtime_error {
1014
using std::runtime_error::runtime_error;
1115
};

0 commit comments

Comments
 (0)