wifi webserver works again

This commit is contained in:
technyon
2022-04-29 20:48:33 +02:00
parent 0dd94a97a3
commit 0e9baed3a4
50 changed files with 440 additions and 466 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include <IPAddress.h>
#include <WiFiClient.h>
#include "EthClient.h"
class EthServer
{
public:
EthServer(IPAddress address, int port) { }
EthServer(int port) { }
virtual EthClient* available() = 0;
virtual void discardClient() = 0;
virtual void close() = 0;
virtual void begin(const int port = 80) = 0;
virtual void setNoDelay(const bool value) = 0;
};