EntropyEngine::Networking::HttpResponseLite
EntropyEngine::Networking::HttpResponseLite
Section titled “EntropyEngine::Networking::HttpResponseLite”Minimal HTTP response representation for WebDAV operations. More…
#include <WebDavAdapter.h>
Public Attributes
Section titled “Public Attributes”| Name | |
|---|---|
| int | status 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). |
Detailed Description
Section titled “Detailed Description”struct EntropyEngine::Networking::HttpResponseLite;Minimal HTTP response representation for WebDAV operations.
Lightweight HTTP response type avoiding dependencies on external HTTP libraries.
Public Attributes Documentation
Section titled “Public Attributes Documentation”variable status
Section titled “variable status”int status = 500;HTTP status code (default 500 Internal Server Error).
variable headers
Section titled “variable headers”std::unordered_map< std::string, std::string > headers;HTTP response headers.
variable body
Section titled “variable body”std::string body;Response body (empty for HEAD, populated for GET/PROPFIND).
Updated on 2026-01-26 at 17:14:35 -0500