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:
committed by
Develo
parent
0b2df35117
commit
28803540a2
@ -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);
|
||||
|
Reference in New Issue
Block a user