mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Add HTTP Basic Auth to WebServer and libb64 (base64) to core
This commit is contained in:
@ -65,7 +65,10 @@ public:
|
||||
|
||||
void begin();
|
||||
void handleClient();
|
||||
|
||||
|
||||
bool authenticate(const char * username, const char * password);
|
||||
void requestAuthentication();
|
||||
|
||||
typedef std::function<void(void)> THandlerFunction;
|
||||
void on(const char* uri, THandlerFunction handler);
|
||||
void on(const char* uri, HTTPMethod method, THandlerFunction fn);
|
||||
|
Reference in New Issue
Block a user