Home
last modified time | relevance | path

Searched refs:contentLength (Results 1 – 2 of 2) sorted by relevance

/openbmc/bmcweb/http/
H A Dhttp_connection.hpp553 const boost::optional<uint64_t> contentLength = in handleContentLengthError() local
555 if (!contentLength) in handleContentLengthError()
563 if (*contentLength > maxAllowedContentLength) in handleContentLengthError()
568 if (*contentLength > loggedOutPostBodyLimit && in handleContentLengthError()
569 *contentLength < httpReqBodyLimit) in handleContentLengthError()
574 logPtr(this), *contentLength, loggedOutPostBodyLimit); in handleContentLengthError()
584 logPtr(this), *contentLength, httpReqBodyLimit); in handleContentLengthError()
H A Dhttp_body.hpp293 void init(const boost::optional<std::uint64_t>& contentLength, in init() argument
296 if (contentLength) in init()
300 value.str().reserve(static_cast<size_t>(*contentLength)); in init()