| 33 | // To do extern "C" uint32_t _SPIFFS_end; |
| 34 | |
| 35 | HTTPUpdate::HTTPUpdate(void) |
| 36 | : _httpClientTimeout(8000), _ledPin(-1) { |
| 37 | _followRedirects = HTTPC_DISABLE_FOLLOW_REDIRECTS; |
| 38 | } |
| 39 | |
| 40 | HTTPUpdate::HTTPUpdate(int httpClientTimeout) |
| 41 | : _httpClientTimeout(httpClientTimeout), _ledPin(-1) { |
nothing calls this directly
no outgoing calls
no test coverage detected