Renamed HtmlClient to HttpClient

This commit is contained in:
anschrammh 2019-12-27 10:45:52 +01:00
parent 635273589f
commit c29d4edbd7
2 changed files with 0 additions and 46 deletions

View File

@ -1,11 +0,0 @@
#include "HtmlClient.h"
HtmlClient::HtmlClient() : WiFiClient()
{
}
HtmlClient::~HtmlClient()
{
}

View File

@ -1,35 +0,0 @@
#ifndef HTMLCLIENT_H
#define HTMLCLIENT_H
#include <ESP8266WiFi.h>
class HtmlClient : WiFiClient
{
public:
HtmlClient();
virtual ~HtmlClient();
boolean sendHtmlQuery();
uint16_t readHtmlResponse(uint8_t *buffer);
protected:
private:
};
#endif //HTMLCLIENT_H
/*
* TCP status codes :
* enum tcp_state {
CLOSED = 0,
LISTEN = 1,
SYN_SENT = 2,
SYN_RCVD = 3,
ESTABLISHED = 4,
FIN_WAIT_1 = 5,
FIN_WAIT_2 = 6,
CLOSE_WAIT = 7,
CLOSING = 8,
LAST_ACK = 9,
TIME_WAIT = 10
};
*/