Home
last modified time | relevance | path

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

/openbmc/bmcweb/http/
H A Dhttp_connection.hpp430 const boost::optional<uint64_t> contentLength = in handleContentLengthError() local
432 if (!contentLength) in handleContentLengthError()
440 if (*contentLength > maxAllowedContentLength) in handleContentLengthError()
445 if (*contentLength > loggedOutPostBodyLimit && in handleContentLengthError()
446 *contentLength < httpReqBodyLimit) in handleContentLengthError()
451 logPtr(this), *contentLength, loggedOutPostBodyLimit); in handleContentLengthError()
461 logPtr(this), *contentLength, httpReqBodyLimit); in handleContentLengthError()
H A Dhttp_body.hpp274 void init(const boost::optional<std::uint64_t>& contentLength, in init() argument
277 if (contentLength) in init()
281 value.str().reserve(static_cast<size_t>(*contentLength)); in init()