-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Closed
mobizt/Arduino
#1Description
Basic Infos
- This issue complies with the issue POLICY doc.
- I have read the documentation at readthedocs and the issue is not addressed there.
- I have tested that the issue is present in current master branch (aka latest git).
- I have searched the issue tracker for a similar issue.
- If there is a stack dump, I have decoded it.
- I have filled out all fields below.
Platform
- Core Version: latest (3.1.2)
Problem Description
The TCP Keepalive was already implemented in WiFiClient class but it was missing from WiFiClientSecure class.
Can you add support TCP Keepalive in WiFiClientSecure class?
Arduino/libraries/ESP8266WiFi/src/WiFiClient.cpp
Lines 417 to 440 in 57fa6cd
void WiFiClient::keepAlive (uint16_t idle_sec, uint16_t intv_sec, uint8_t count) | |
{ | |
_client->keepAlive(idle_sec, intv_sec, count); | |
} | |
bool WiFiClient::isKeepAliveEnabled () const | |
{ | |
return _client->isKeepAliveEnabled(); | |
} | |
uint16_t WiFiClient::getKeepAliveIdle () const | |
{ | |
return _client->getKeepAliveIdle(); | |
} | |
uint16_t WiFiClient::getKeepAliveInterval () const | |
{ | |
return _client->getKeepAliveInterval(); | |
} | |
uint8_t WiFiClient::getKeepAliveCount () const | |
{ | |
return _client->getKeepAliveCount(); | |
} |
Metadata
Metadata
Assignees
Labels
No labels