Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By androidfanboy
#74015 In the .ccp file it says this regarding the "setNoDelay()":

Code: Select all#ifdef ESP8266
    _tcp->setNoDelay(true);
#endif
    return connected();
}


That seems like it sets it to true by default for ESP8266. I guess I need to also use that for my "manual" WiFiClient library?
User avatar
By androidfanboy
#74026 The main reason is to use HTTPS without having to supply a fingerprint. And weirdly enough for some servers the HTTPClient library doesn't work with the fingerprint. That's why I use the WiFiClientSecure library, but doing it this way "manually" somehow is slower.