1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00
CommandStation-EX/NetworkInterface.h

61 lines
1.9 KiB
C
Raw Normal View History

/*
* © 2020, Gregor Baues. All rights reserved.
*
* This is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* It 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef NetworkInterface_h
#define NetworkInterface_h
#include <Arduino.h>
2020-10-26 10:29:40 +01:00
// #include "Transport.h"
#include "HttpRequest.h"
typedef enum protocolType {
TCP,
UDP,
MQTT
} protocolType;
typedef enum transportType {
WIFI, // using an AT (Version >= V1.7) command enabled ESP8266 not to be used in conjunction with the WifiInterface though! not tested for conflicts
ETHERNET // using the EthernetShield
2020-10-26 10:29:40 +01:00
} transportType;
using HttpCallback = void(*)(ParsedRequest *req, Client *client);
class NetworkInterface
{
private:
2020-10-26 10:29:40 +01:00
HttpCallback httpCallback;
transportType t;
public:
2020-10-26 10:29:40 +01:00
void setHttpCallback(HttpCallback callback);
HttpCallback getHttpCallback();
void setup(transportType t, protocolType p, uint16_t port); // specific port nummber
void setup(transportType t, protocolType p); // uses default port number
void setup(transportType t); // defaults for protocol/port
2020-10-26 10:29:40 +01:00
void setup(); // defaults for all as above plus CABLE (i.e. using EthernetShield ) as default
void loop();
NetworkInterface();
~NetworkInterface();
};
#endif