EntropyEngine::Networking::WebDAV::WebDAVConnection::PendingResponse
EntropyEngine::Networking::WebDAV::WebDAVConnection::PendingResponse
Section titled “EntropyEngine::Networking::WebDAV::WebDAVConnection::PendingResponse”Internal state for aggregated HTTP requests.
#include <WebDAVConnection.h>
Public Attributes
Section titled “Public Attributes”| Name | |
|---|---|
| std::string | statusText Accumulated status text. |
| Response | resp Accumulated response. |
| size_t | maxBodyBytes Body size cap for this request. |
| std::string | failureReason Error description if failed. |
| bool | failed true on parse or network error |
| bool | done true when response complete |
| std::condition_variable | cv Signals request completion. |
| std::string | curHeaderValue Accumulator for header value (llhttp may chunk). |
| std::string | curHeaderField Accumulator for header field (llhttp may chunk). |
Public Attributes Documentation
Section titled “Public Attributes Documentation”variable statusText
Section titled “variable statusText”std::string statusText;Accumulated status text.
variable resp
Section titled “variable resp”Response resp;Accumulated response.
variable maxBodyBytes
Section titled “variable maxBodyBytes”size_t maxBodyBytes = DEFAULT_MAX_BODY_BYTES;Body size cap for this request.
variable failureReason
Section titled “variable failureReason”std::string failureReason;Error description if failed.
variable failed
Section titled “variable failed”bool failed = false;true on parse or network error
variable done
Section titled “variable done”bool done = false;true when response complete
variable cv
Section titled “variable cv”std::condition_variable cv;Signals request completion.
variable curHeaderValue
Section titled “variable curHeaderValue”std::string curHeaderValue;Accumulator for header value (llhttp may chunk).
variable curHeaderField
Section titled “variable curHeaderField”std::string curHeaderField;Accumulator for header field (llhttp may chunk).
Updated on 2026-01-26 at 17:14:35 -0500