waterish_os_rev3_public/libraries/ArduinoOTA/src/WiFiOTA.h

65 lines
1.7 KiB
C++

/*
Copyright (c) 2017 Arduino LLC. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
WiFi101OTA version Feb 2017
by Sandeep Mistry (Arduino)
modified for ArduinoOTA Dec 2018
by Juraj Andrassy
*/
#ifndef _WIFI_OTA_H_INCLUDED
#define _WIFI_OTA_H_INCLUDED
#include <Arduino.h>
#include <Server.h>
#include <Client.h>
#include <IPAddress.h>
#include <Udp.h>
#include "OTAStorage.h"
class WiFiOTAClass {
protected:
WiFiOTAClass();
void begin(IPAddress& localIP, const char* name, const char* password, OTAStorage& storage);
void pollMdns(UDP &mdnsSocket);
void pollServer(Client& client);
public:
void beforeApply(void (*fn)(void)) {
beforeApplyCallback = fn;
}
private:
void sendHttpResponse(Client& client, int code, const char* status);
void flushRequestBody(Client& client, long contentLength);
private:
String _name;
String _expectedAuthorization;
OTAStorage* _storage;
uint32_t localIp;
uint32_t _lastMdnsResponseTime;
void (*beforeApplyCallback)(void);
};
#endif