Home
last modified time | relevance | path

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

/openbmc/bmcweb/http/
H A Dhttp_connection.hpp443 const boost::optional<uint64_t> contentLength = in handleContentLengthError() local
445 if (!contentLength) in handleContentLengthError()
453 if (*contentLength > maxAllowedContentLength) in handleContentLengthError()
458 if (*contentLength > loggedOutPostBodyLimit && in handleContentLengthError()
459 *contentLength < httpReqBodyLimit) in handleContentLengthError()
464 logPtr(this), *contentLength, loggedOutPostBodyLimit); in handleContentLengthError()
474 logPtr(this), *contentLength, httpReqBodyLimit); in handleContentLengthError()
H A Dhttp_body.hpp239 void init(const boost::optional<std::uint64_t>& contentLength, in init() argument
242 if (contentLength) in init()
246 value.str().reserve(static_cast<size_t>(*contentLength)); in init()