1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00

ESP8266WebServer: save RAM by moving response strings to flash (#1732)

This commit is contained in:
Ivan Grokhotkov
2016-04-18 10:43:00 +03:00
parent f6516b004f
commit 7450dd39ca
2 changed files with 43 additions and 43 deletions

View File

@ -134,7 +134,7 @@ protected:
void _handleRequest();
bool _parseRequest(WiFiClient& client);
void _parseArguments(String data);
static const char* _responseCodeToString(int code);
static String _responseCodeToString(int code);
bool _parseForm(WiFiClient& client, String boundary, uint32_t len);
bool _parseFormUploadAborted();
void _uploadWriteByte(uint8_t b);