From 6ad9471e095855d24d5b425c3ca2a749d65bf574 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 14 Jun 2023 19:56:07 +0700 Subject: [PATCH] Fix repo in Readme. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b2d1e90..9b7d22d0 100644 --- a/README.md +++ b/README.md @@ -594,7 +594,7 @@ To check the KeepAlive status, use `.isKeepAlive`. For the TCP (KeepAlive) options, see [here](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/lwip.html#tcp-options). -You can check the server connecting status, by exexuting `.httpConnected()` which will return true when connection to the server is still alive. +You can check the server connecting status, by executing `.httpConnected()` which will return true when connection to the server is still alive. The TCP KeepAlive for ESP8266, [this ESP8266 PR #8940](https://github.com/esp8266/Arduino/pull/8940) should be merged in the [ESP8266 Arduino Core SDK](https://github.com/esp8266/Arduino/releases), i.e., it will be supported in the ESP8266 core version newer than v3.1.2. @@ -1012,7 +1012,7 @@ In general, the RTDB stream timed out occurred when no data included keep-alive Now you can take the pros of TCP KeepAlive in Stream mode by brobing the server connection at some intervals to help the stream time out more reliable. -You can check the server connecting status, by exexuting `.httpConnected()` which will return true when connection to the server is still alive. +You can check the server connecting status, by executing `.httpConnected()` which will return true when connection to the server is still alive. As previousely described, using [TCP KeepAlive in `FirebaseData` object](#about-firebasedata-object) in Stream has pros and cons.