feat(http): Enhance response buffer management with pre-allocation and capacity tracking

This commit is contained in:
GW_MC
2026-04-20 15:12:04 +08:00
parent 48c6b97062
commit 4cfa7333f1
2 changed files with 11 additions and 1 deletions

View File

@@ -55,4 +55,5 @@ private:
WifiHandler* wifiHandler;
char* response_buffer;
size_t response_size;
size_t response_capacity = 0;
};