1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

Host header support

This commit is contained in:
aalku
2015-08-14 22:30:15 +02:00
committed by Ivan Grokhotkov
parent acc34e2914
commit 5a91c66615
3 changed files with 43 additions and 1 deletions

View File

@ -253,6 +253,10 @@ bool ESP8266WebServer::hasArg(const char* name) {
return false;
}
String ESP8266WebServer::hostHeader() {
return _hostHeader;
}
void ESP8266WebServer::onFileUpload(THandlerFunction fn) {
_fileUploadHandler = fn;
}