Skip to content

EntropyEngine::Networking::HttpResponseLite

EntropyEngine::Networking::HttpResponseLite

Section titled “EntropyEngine::Networking::HttpResponseLite”

Minimal HTTP response representation for WebDAV operations. More…

#include <WebDavAdapter.h>

Name
intstatus
HTTP status code (default 500 Internal Server Error).
std::unordered_map< std::string, std::string >headers
HTTP response headers.
std::stringbody
Response body (empty for HEAD, populated for GET/PROPFIND).
struct EntropyEngine::Networking::HttpResponseLite;

Minimal HTTP response representation for WebDAV operations.

Lightweight HTTP response type avoiding dependencies on external HTTP libraries.

int status = 500;

HTTP status code (default 500 Internal Server Error).

std::unordered_map< std::string, std::string > headers;

HTTP response headers.

std::string body;

Response body (empty for HEAD, populated for GET/PROPFIND).


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