Respect timeout with SSL by d-a-v · Pull Request #8899 · esp8266/Arduino
| int connect(IPAddress ip, uint16_t port) override { uto(); return _ctx->connect(ip, port); } | ||
| int connect(const String& host, uint16_t port) override { uto(); return _ctx->connect(host, port); } | ||
| int connect(const char* name, uint16_t port) override { uto(); return _ctx->connect(name, port); } | ||
|
|
||
| uint8_t connected() override { uto(); return _ctx->connected(); } | ||
| size_t write(const uint8_t *buf, size_t size) override { uto(); return _ctx->write(buf, size); } | ||
| size_t write_P(PGM_P buf, size_t size) override { uto(); return _ctx->write_P(buf, size); } | ||
| size_t write(const char *buf) { uto(); return write((const uint8_t*)buf, strlen(buf)); } | ||
| size_t write_P(const char *buf) { uto(); return write_P((PGM_P)buf, strlen_P(buf)); } | ||
| size_t write(Stream& stream) /* Note this is not virtual */ { uto(); return _ctx->write(stream); } | ||
| int read(uint8_t *buf, size_t size) override { uto(); return _ctx->read(buf, size); } | ||
| int available() override { uto(); return _ctx->available(); } | ||
| int availableForWrite() override { uto(); return _ctx->availableForWrite(); } | ||
| int read() override { uto(); return _ctx->read(); } | ||
| int peek() override { uto(); return _ctx->peek(); } | ||
| size_t peekBytes(uint8_t *buffer, size_t length) override { uto(); return _ctx->peekBytes(buffer, length); } | ||
| bool flush(unsigned int maxWaitMs) { uto(); return _ctx->flush(maxWaitMs); } | ||
| bool stop(unsigned int maxWaitMs) { uto(); return _ctx->stop(maxWaitMs); } |