mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-27 21:16:50 +03:00
* make HTTP Update Server more secure * added option for authentication * added option to change the url for upload * move to overloaded setup * remove delay in both examples * Get better result responses * fix strings interesting, the meta did not refresh if the successResponse is put in "R"
40 lines
909 B
C++
40 lines
909 B
C++
#ifndef __HTTP_UPDATE_SERVER_H
|
|
#define __HTTP_UPDATE_SERVER_H
|
|
|
|
class ESP8266WebServer;
|
|
|
|
class ESP8266HTTPUpdateServer
|
|
{
|
|
private:
|
|
bool _serial_output;
|
|
ESP8266WebServer *_server;
|
|
static const char *_serverIndex;
|
|
static const char *_failedResponse;
|
|
static const char *_successResponse;
|
|
char * _username;
|
|
char * _password;
|
|
bool _authenticated;
|
|
public:
|
|
ESP8266HTTPUpdateServer(bool serial_debug=false);
|
|
|
|
void setup(ESP8266WebServer *server)
|
|
{
|
|
setup(server, NULL, NULL);
|
|
}
|
|
|
|
void setup(ESP8266WebServer *server, const char * path)
|
|
{
|
|
setup(server, path, NULL, NULL);
|
|
}
|
|
|
|
void setup(ESP8266WebServer *server, const char * username, const char * password)
|
|
{
|
|
setup(server, "/update", username, password);
|
|
}
|
|
|
|
void setup(ESP8266WebServer *server, const char * path, const char * username, const char * password);
|
|
};
|
|
|
|
|
|
#endif
|