Skip to content

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>

Name
std::stringstatusText
Accumulated status text.
Responseresp
Accumulated response.
size_tmaxBodyBytes
Body size cap for this request.
std::stringfailureReason
Error description if failed.
boolfailed
true on parse or network error
booldone
true when response complete
std::condition_variablecv
Signals request completion.
std::stringcurHeaderValue
Accumulator for header value (llhttp may chunk).
std::stringcurHeaderField
Accumulator for header field (llhttp may chunk).
std::string statusText;

Accumulated status text.

Response resp;

Accumulated response.

size_t maxBodyBytes = DEFAULT_MAX_BODY_BYTES;

Body size cap for this request.

std::string failureReason;

Error description if failed.

bool failed = false;

true on parse or network error

bool done = false;

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).


Updated on 2026-01-26 at 17:14:35 -0500