HTTPClient Port (#347)

* Fix possible infinite loop in the example

* Remove workaround of sockets always return -76 

Remove workaround of sockets always return -76 (because it's fixed on IDF now)
Remove delay during handshake (improving stability)

* Remove unusable mbedtls_net of context creation

* Fix bad destructor

* Compatibility with WiFiClient for HTTPClient

* Initial port from ESP8266

Changed SHA1 fingerprint by Root CA verification
Changed log system

* Remove deprecated function
This commit is contained in:
copercini
2017-05-19 05:18:20 -03:00
committed by Me No Dev
parent 05a3de262a
commit 51a4432ca8
12 changed files with 1745 additions and 54 deletions

View File

@ -64,6 +64,7 @@ WiFiClientSecure::WiFiClientSecure(int sock)
WiFiClientSecure::~WiFiClientSecure()
{
stop();
delete sslclient;
}
WiFiClientSecure &WiFiClientSecure::operator=(const WiFiClientSecure &other)