diff --git a/webserv/http/HttpRequest.hpp b/webserv/http/HttpRequest.hpp index a218624..aff01be 100644 --- a/webserv/http/HttpRequest.hpp +++ b/webserv/http/HttpRequest.hpp @@ -36,6 +36,10 @@ class HttpRequest private: void parseBuffer(); + [[nodiscard]] bool parseBufferforRequestLine(); + [[nodiscard]] bool parseBufferforHeaders(); + [[nodiscard]] bool parseBufferforBody(); + void parseContentLength(); const ServerConfig *serverConfig_; const Client *client_;