What it does
deki-http provides an IDekiHttpClient implementation for desktop builds, registered into the engine-core DekiHttp facade through a SetupComponent that runs automatically when the editor finishes loading packages. Other packages consume HTTP through a one-call helper:
std::string body = DekiHttp::FetchUrl("http://example.com/api");
// returns "" if no client is registered or the fetch failed
Implementations
WinHttpClient(Windows): synchronous GET backed by WinHTTP. Linked againstwinhttp.libdeclared asPACKAGE_SYSTEM_LIBSinpackage.cmake.
Embedded targets
This package is editor and desktop only. Embedded boards do not link it; their network stack lives in board-specific integration packages.