stream WebDAV downloads in chunks to prevent client disconnects

This commit is contained in:
jpirnay
2026-05-15 14:23:19 +02:00
parent 684a96f108
commit f1b8b75002
4 changed files with 66 additions and 22 deletions
+8
View File
@@ -0,0 +1,8 @@
#pragma once
#include <HalStorage.h>
#include <NetworkClient.h>
namespace HttpFileStreamer {
bool streamFileToClient(FsFile& file, NetworkClient& client);
}