1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-13 13:01:55 +03:00

Added String hostname support to WiFiClient and WiFiClientSecure (#3349)

* Added String hostname support to WiFiClient and WiFiClientSecure

* Typo in WiFi
This commit is contained in:
Rick van Schijndel
2017-12-29 05:58:36 +01:00
committed by Develo
parent 0b2df35117
commit 28803540a2
4 changed files with 12 additions and 0 deletions

View File

@ -36,6 +36,7 @@ public:
WiFiClientSecure& operator=(const WiFiClientSecure&);
int connect(IPAddress ip, uint16_t port) override;
int connect(const String host, uint16_t port) override;
int connect(const char* name, uint16_t port) override;
bool verify(const char* fingerprint, const char* domain_name);