mirror of
https://github.com/khoih-prog/AsyncHTTPRequest_Generic.git
synced 2025-07-30 18:37:15 +02:00
v1.10.1 to fix bug of wrong reqStates
### Releases v1.10.1 1. Fix bug of wrong `reqStates` 2. Optional larger `DEFAULT_RX_TIMEOUT` from default 3s, for slower networks
This commit is contained in:
@ -12,6 +12,7 @@
|
|||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
* [Changelog](#changelog)
|
* [Changelog](#changelog)
|
||||||
|
* [Releases v1.10.1](#releases-v1101)
|
||||||
* [Releases v1.10.0](#releases-v1100)
|
* [Releases v1.10.0](#releases-v1100)
|
||||||
* [Releases v1.9.2](#releases-v192)
|
* [Releases v1.9.2](#releases-v192)
|
||||||
* [Releases v1.9.1](#releases-v191)
|
* [Releases v1.9.1](#releases-v191)
|
||||||
@ -43,6 +44,11 @@
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### Releases v1.10.1
|
||||||
|
|
||||||
|
1. Fix bug of wrong `reqStates`
|
||||||
|
2. Optional larger `DEFAULT_RX_TIMEOUT` from default 3s, for slower networks
|
||||||
|
|
||||||
### Releases v1.10.0
|
### Releases v1.10.0
|
||||||
|
|
||||||
1. Fix bug.
|
1. Fix bug.
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
//char GET_ServerAddress[] = "192.168.2.110/";
|
//char GET_ServerAddress[] = "192.168.2.110/";
|
||||||
char GET_ServerAddress[] = "http://worldtimeapi.org/api/timezone/America/Toronto.txt";
|
char GET_ServerAddress[] = "http://worldtimeapi.org/api/timezone/America/Toronto.txt";
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// 600s = 10 minutes to not flooding, 60s in testing
|
// 600s = 10 minutes to not flooding, 60s in testing
|
||||||
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
||||||
|
@ -35,8 +35,8 @@ const char GET_ServerAddress[] = "dweet.io";
|
|||||||
// use your own thing name here
|
// use your own thing name here
|
||||||
String dweetName = "/dweet/for/currentSecond?second=";
|
String dweetName = "/dweet/for/currentSecond?second=";
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// 600s = 10 minutes to not flooding, 60s in testing
|
// 600s = 10 minutes to not flooding, 60s in testing
|
||||||
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
||||||
|
@ -29,8 +29,8 @@ const char POST_ServerAddress[] = "dweet.io";
|
|||||||
// use your own thing name here
|
// use your own thing name here
|
||||||
String dweetName = "/dweet/for/pinA0-Read?";
|
String dweetName = "/dweet/for/pinA0-Read?";
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// 600s = 10 minutes to not flooding, 60s in testing
|
// 600s = 10 minutes to not flooding, 60s in testing
|
||||||
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
||||||
|
@ -44,8 +44,8 @@
|
|||||||
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
|
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// Level from 0-4
|
// Level from 0-4
|
||||||
#define ASYNC_HTTP_DEBUG_PORT Serial
|
#define ASYNC_HTTP_DEBUG_PORT Serial
|
||||||
@ -68,6 +68,9 @@ const char* password = "your_pass";
|
|||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Seconds for timeout, default is 3s
|
||||||
|
#define DEFAULT_RX_TIMEOUT 10
|
||||||
|
|
||||||
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
||||||
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
||||||
|
|
||||||
|
@ -65,8 +65,11 @@ const char* password = "your_pass";
|
|||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
|
// Seconds for timeout, default is 3s
|
||||||
|
#define DEFAULT_RX_TIMEOUT 10
|
||||||
|
|
||||||
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
||||||
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
||||||
|
@ -95,8 +95,11 @@ using TCPClient = WiFiClient;
|
|||||||
|
|
||||||
//////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
|
// Seconds for timeout, default is 3s
|
||||||
|
#define DEFAULT_RX_TIMEOUT 10
|
||||||
|
|
||||||
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
||||||
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
||||||
|
@ -44,6 +44,9 @@ const char* password = "your_pass";
|
|||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Seconds for timeout, default is 3s
|
||||||
|
#define DEFAULT_RX_TIMEOUT 10
|
||||||
|
|
||||||
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
||||||
#include <AsyncHTTPRequest_Generic.h> // http://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
#include <AsyncHTTPRequest_Generic.h> // http://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
||||||
|
|
||||||
|
@ -49,8 +49,8 @@
|
|||||||
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.15.0"
|
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.15.0"
|
||||||
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN 1015000
|
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN 1015000
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// Level from 0-4
|
// Level from 0-4
|
||||||
#define ASYNC_HTTP_DEBUG_PORT Serial
|
#define ASYNC_HTTP_DEBUG_PORT Serial
|
||||||
|
@ -42,8 +42,8 @@
|
|||||||
|
|
||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// 600s = 10 minutes to not flooding, 60s in testing
|
// 600s = 10 minutes to not flooding, 60s in testing
|
||||||
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
//char GET_ServerAddress[] = "ipv4bot.whatismyipaddress.com/";
|
//char GET_ServerAddress[] = "ipv4bot.whatismyipaddress.com/";
|
||||||
char GET_ServerAddress[] = "http://worldtimeapi.org/api/timezone/America/Toronto.txt";
|
char GET_ServerAddress[] = "http://worldtimeapi.org/api/timezone/America/Toronto.txt";
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// 600s = 10 minutes to not flooding, 60s in testing
|
// 600s = 10 minutes to not flooding, 60s in testing
|
||||||
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
||||||
|
@ -26,8 +26,8 @@ const char GET_ServerAddress[] = "arduino.tips";
|
|||||||
// GET location
|
// GET location
|
||||||
String GET_Location = "/asciilogo.txt";
|
String GET_Location = "/asciilogo.txt";
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// 600s = 10 minutes to not flooding, 60s in testing
|
// 600s = 10 minutes to not flooding, 60s in testing
|
||||||
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000
|
||||||
|
@ -57,8 +57,8 @@
|
|||||||
|
|
||||||
#include <WebServer_WT32_ETH01.h> // https://github.com/khoih-prog/WebServer_WT32_ETH01
|
#include <WebServer_WT32_ETH01.h> // https://github.com/khoih-prog/WebServer_WT32_ETH01
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
||||||
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
||||||
|
@ -57,8 +57,9 @@
|
|||||||
|
|
||||||
#include <WebServer_WT32_ETH01.h> // https://github.com/khoih-prog/WebServer_WT32_ETH01
|
#include <WebServer_WT32_ETH01.h> // https://github.com/khoih-prog/WebServer_WT32_ETH01
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
|
||||||
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
||||||
|
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
#error This code is intended to run on the ESP8266, ESP32 or STM32 platform! Please check your Tools->Board setting.
|
#error This code is intended to run on the ESP8266, ESP32 or STM32 platform! Please check your Tools->Board setting.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010001
|
||||||
|
|
||||||
#include "multiFileProject.h"
|
#include "multiFileProject.h"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name":"AsyncHTTPRequest_Generic",
|
"name":"AsyncHTTPRequest_Generic",
|
||||||
"version": "1.10.0",
|
"version": "1.10.1",
|
||||||
"description":"Simple Async HTTP Request library, supporting GET, POST, PUT, PATCH, DELETE and HEAD, on top of AsyncTCP libraries, such as AsyncTCP, ESPAsyncTCP, AsyncTCP_STM32, etc.. for ESP32 (including ESP32_S2, ESP32_S3 and ESP32_C3), WT32_ETH01 (ESP32 + LAN8720), ESP8266 (WiFi, W5x00 or ENC28J60) and currently STM32 with built-in LAN8742A Ethernet.",
|
"description":"Simple Async HTTP Request library, supporting GET, POST, PUT, PATCH, DELETE and HEAD, on top of AsyncTCP libraries, such as AsyncTCP, ESPAsyncTCP, AsyncTCP_STM32, etc.. for ESP32 (including ESP32_S2, ESP32_S3 and ESP32_C3), WT32_ETH01 (ESP32 + LAN8720), ESP8266 (WiFi, W5x00 or ENC28J60) and currently STM32 with built-in LAN8742A Ethernet.",
|
||||||
"keywords":"communication, async, tcp, http, ESP8266, ESP32, ESP32-S2, ESP32-S3, ESP32-C3, wt32-eth01, stm32, ethernet, wifi, lan8742a, nucleo-144, stm32f7, W5x00, ENC28J60",
|
"keywords":"communication, async, tcp, http, ESP8266, ESP32, ESP32-S2, ESP32-S3, ESP32-C3, wt32-eth01, stm32, ethernet, wifi, lan8742a, nucleo-144, stm32f7, W5x00, ENC28J60",
|
||||||
"authors": [
|
"authors": [
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name=AsyncHTTPRequest_Generic
|
name=AsyncHTTPRequest_Generic
|
||||||
version=1.10.0
|
version=1.10.1
|
||||||
author=Bob Lemaire,Khoi Hoang <khoih.prog@gmail.com>
|
author=Bob Lemaire,Khoi Hoang <khoih.prog@gmail.com>
|
||||||
maintainer=Khoi Hoang <khoih.prog@gmail.com>
|
maintainer=Khoi Hoang <khoih.prog@gmail.com>
|
||||||
license=GPLv3
|
license=GPLv3
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
You should have received a copy of the GNU General Public License along with this program.
|
You should have received a copy of the GNU General Public License along with this program.
|
||||||
If not, see <https://www.gnu.org/licenses/>.
|
If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
Version: 1.10.0
|
Version: 1.10.1
|
||||||
|
|
||||||
Version Modified By Date Comments
|
Version Modified By Date Comments
|
||||||
------- ----------- ---------- -----------
|
------- ----------- ---------- -----------
|
||||||
@ -33,6 +33,7 @@
|
|||||||
1.9.1 K Hoang 09/09/2022 Fix ESP32 chipID for example `AsyncHTTPRequest_ESP_WiFiManager`
|
1.9.1 K Hoang 09/09/2022 Fix ESP32 chipID for example `AsyncHTTPRequest_ESP_WiFiManager`
|
||||||
1.9.2 K Hoang 18/10/2022 Not try to reconnect to the same host:port after connected
|
1.9.2 K Hoang 18/10/2022 Not try to reconnect to the same host:port after connected
|
||||||
1.10.0 K Hoang 20/10/2022 Fix bug. Clean up
|
1.10.0 K Hoang 20/10/2022 Fix bug. Clean up
|
||||||
|
1.10.1 K Hoang 21/10/2022 Fix bug of wrong reqStates
|
||||||
*****************************************************************************************************************************/
|
*****************************************************************************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
You should have received a copy of the GNU General Public License along with this program.
|
You should have received a copy of the GNU General Public License along with this program.
|
||||||
If not, see <https://www.gnu.org/licenses/>.
|
If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
Version: 1.10.0
|
Version: 1.10.1
|
||||||
|
|
||||||
Version Modified By Date Comments
|
Version Modified By Date Comments
|
||||||
------- ----------- ---------- -----------
|
------- ----------- ---------- -----------
|
||||||
@ -33,6 +33,7 @@
|
|||||||
1.9.1 K Hoang 09/09/2022 Fix ESP32 chipID for example `AsyncHTTPRequest_ESP_WiFiManager`
|
1.9.1 K Hoang 09/09/2022 Fix ESP32 chipID for example `AsyncHTTPRequest_ESP_WiFiManager`
|
||||||
1.9.2 K Hoang 18/10/2022 Not try to reconnect to the same host:port after connected
|
1.9.2 K Hoang 18/10/2022 Not try to reconnect to the same host:port after connected
|
||||||
1.10.0 K Hoang 20/10/2022 Fix bug. Clean up
|
1.10.0 K Hoang 20/10/2022 Fix bug. Clean up
|
||||||
|
1.10.1 K Hoang 21/10/2022 Fix bug of wrong reqStates
|
||||||
*****************************************************************************************************************************/
|
*****************************************************************************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
You should have received a copy of the GNU General Public License along with this program.
|
You should have received a copy of the GNU General Public License along with this program.
|
||||||
If not, see <https://www.gnu.org/licenses/>.
|
If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
Version: 1.10.0
|
Version: 1.10.1
|
||||||
|
|
||||||
Version Modified By Date Comments
|
Version Modified By Date Comments
|
||||||
------- ----------- ---------- -----------
|
------- ----------- ---------- -----------
|
||||||
@ -33,6 +33,7 @@
|
|||||||
1.9.1 K Hoang 09/09/2022 Fix ESP32 chipID for example `AsyncHTTPRequest_ESP_WiFiManager`
|
1.9.1 K Hoang 09/09/2022 Fix ESP32 chipID for example `AsyncHTTPRequest_ESP_WiFiManager`
|
||||||
1.9.2 K Hoang 18/10/2022 Not try to reconnect to the same host:port after connected
|
1.9.2 K Hoang 18/10/2022 Not try to reconnect to the same host:port after connected
|
||||||
1.10.0 K Hoang 20/10/2022 Fix bug. Clean up
|
1.10.0 K Hoang 20/10/2022 Fix bug. Clean up
|
||||||
|
1.10.1 K Hoang 21/10/2022 Fix bug of wrong reqStates
|
||||||
*****************************************************************************************************************************/
|
*****************************************************************************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
@ -42,13 +43,13 @@
|
|||||||
|
|
||||||
////////////////////////////////////////
|
////////////////////////////////////////
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION "AsyncHTTPRequest_Generic v1.10.0"
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION "AsyncHTTPRequest_Generic v1.10.1"
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MAJOR 1
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MAJOR 1
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MINOR 10
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MINOR 10
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_PATCH 0
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_PATCH 1
|
||||||
|
|
||||||
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_INT 1010000
|
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_INT 1010001
|
||||||
|
|
||||||
////////////////////////////////////////
|
////////////////////////////////////////
|
||||||
|
|
||||||
@ -179,8 +180,7 @@ class xbuf: public Print
|
|||||||
|
|
||||||
String peekString(int);
|
String peekString(int);
|
||||||
|
|
||||||
/* In addition to the above functions,
|
/* In addition to the above functions, the following inherited functions from the Print class are available.
|
||||||
the following inherited functions from the Print class are available.
|
|
||||||
|
|
||||||
size_t printf(const char * format, ...) __attribute__ ((format (printf, 2, 3)));
|
size_t printf(const char * format, ...) __attribute__ ((format (printf, 2, 3)));
|
||||||
size_t printf_P(PGM_P format, ...) __attribute__((format(printf, 2, 3)));
|
size_t printf_P(PGM_P format, ...) __attribute__((format(printf, 2, 3)));
|
||||||
@ -230,7 +230,9 @@ class xbuf: public Print
|
|||||||
DEBUG_IOTA_PORT.printf("Debug(%3ld): ", millis()-_requestStartTime);\
|
DEBUG_IOTA_PORT.printf("Debug(%3ld): ", millis()-_requestStartTime);\
|
||||||
DEBUG_IOTA_PORT.printf_P(PSTR(format),##__VA_ARGS__);}
|
DEBUG_IOTA_PORT.printf_P(PSTR(format),##__VA_ARGS__);}
|
||||||
|
|
||||||
|
#if !defined(DEFAULT_RX_TIMEOUT)
|
||||||
#define DEFAULT_RX_TIMEOUT 3 // Seconds for timeout
|
#define DEFAULT_RX_TIMEOUT 3 // Seconds for timeout
|
||||||
|
#endif
|
||||||
|
|
||||||
////////////////////////////////////////
|
////////////////////////////////////////
|
||||||
|
|
||||||
@ -275,9 +277,6 @@ class AsyncHTTPRequest
|
|||||||
SAFE_DELETE_ARRAY(name)
|
SAFE_DELETE_ARRAY(name)
|
||||||
SAFE_DELETE_ARRAY(value)
|
SAFE_DELETE_ARRAY(value)
|
||||||
SAFE_DELETE(next)
|
SAFE_DELETE(next)
|
||||||
//delete[] name;
|
|
||||||
//delete[] value;
|
|
||||||
//delete next;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -322,8 +321,7 @@ class AsyncHTTPRequest
|
|||||||
bool debug(); // is debug on or off?
|
bool debug(); // is debug on or off?
|
||||||
|
|
||||||
bool open(const char* /*GET/POST*/, const char* URL); // Initiate a request
|
bool open(const char* /*GET/POST*/, const char* URL); // Initiate a request
|
||||||
void onReadyStateChange(readyStateChangeCB, void* arg = 0); // Optional event handler for ready state change
|
void onReadyStateChange(readyStateChangeCB, void* arg = 0); // Optional event handler for ready state change or you can simply poll readyState()
|
||||||
// or you can simply poll readyState()
|
|
||||||
void setTimeout(int); // overide default timeout (seconds)
|
void setTimeout(int); // overide default timeout (seconds)
|
||||||
|
|
||||||
void setReqHeader(const char* name, const char* value); // add a request header
|
void setReqHeader(const char* name, const char* value); // add a request header
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
You should have received a copy of the GNU General Public License along with this program.
|
You should have received a copy of the GNU General Public License along with this program.
|
||||||
If not, see <https://www.gnu.org/licenses/>.
|
If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
Version: 1.10.0
|
Version: 1.10.1
|
||||||
|
|
||||||
Version Modified By Date Comments
|
Version Modified By Date Comments
|
||||||
------- ----------- ---------- -----------
|
------- ----------- ---------- -----------
|
||||||
@ -33,6 +33,7 @@
|
|||||||
1.9.1 K Hoang 09/09/2022 Fix ESP32 chipID for example `AsyncHTTPRequest_ESP_WiFiManager`
|
1.9.1 K Hoang 09/09/2022 Fix ESP32 chipID for example `AsyncHTTPRequest_ESP_WiFiManager`
|
||||||
1.9.2 K Hoang 18/10/2022 Not try to reconnect to the same host:port after connected
|
1.9.2 K Hoang 18/10/2022 Not try to reconnect to the same host:port after connected
|
||||||
1.10.0 K Hoang 20/10/2022 Fix bug. Clean up
|
1.10.0 K Hoang 20/10/2022 Fix bug. Clean up
|
||||||
|
1.10.1 K Hoang 21/10/2022 Fix bug of wrong reqStates
|
||||||
*****************************************************************************************************************************/
|
*****************************************************************************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
@ -162,6 +163,7 @@ size_t xbuf::read(uint8_t* buf, const size_t len)
|
|||||||
size_t supply = (_offset + _used) > _segSize ? _segSize - _offset : _used;
|
size_t supply = (_offset + _used) > _segSize ? _segSize - _offset : _used;
|
||||||
size_t demand = len - read;
|
size_t demand = len - read;
|
||||||
size_t chunk = supply < demand ? supply : demand;
|
size_t chunk = supply < demand ? supply : demand;
|
||||||
|
|
||||||
memcpy(buf + read, _head->data + _offset, chunk);
|
memcpy(buf + read, _head->data + _offset, chunk);
|
||||||
_offset += chunk;
|
_offset += chunk;
|
||||||
_used -= chunk;
|
_used -= chunk;
|
||||||
@ -405,20 +407,17 @@ void xbuf::addSeg()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// KH, Must check NULL here
|
|
||||||
_tail = _tail->next;
|
_tail = _tail->next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// KH, Must check NULL here
|
|
||||||
_tail = _head = (xseg*) new uint32_t[_segSize / 4 + 1];
|
_tail = _head = (xseg*) new uint32_t[_segSize / 4 + 1];
|
||||||
|
|
||||||
if (_tail == NULL)
|
if (_tail == NULL)
|
||||||
AHTTP_LOGERROR(F("xbuf::addSeg: error new 2"));
|
AHTTP_LOGERROR(F("xbuf::addSeg: error new 2"));
|
||||||
}
|
}
|
||||||
|
|
||||||
// KH, Must check NULL here
|
|
||||||
if (_tail)
|
if (_tail)
|
||||||
_tail->next = nullptr;
|
_tail->next = nullptr;
|
||||||
|
|
||||||
@ -905,6 +904,7 @@ String AsyncHTTPRequest::responseText()
|
|||||||
if (localString.length() < avail)
|
if (localString.length() < avail)
|
||||||
{
|
{
|
||||||
AHTTP_LOGWARN(F("!responseText() no buffer"))
|
AHTTP_LOGWARN(F("!responseText() no buffer"))
|
||||||
|
|
||||||
_HTTPcode = HTTPCODE_TOO_LESS_RAM;
|
_HTTPcode = HTTPCODE_TOO_LESS_RAM;
|
||||||
_client->abort();
|
_client->abort();
|
||||||
_AHTTP_unlock;
|
_AHTTP_unlock;
|
||||||
@ -1251,10 +1251,7 @@ size_t AsyncHTTPRequest::_send()
|
|||||||
if ( ! _client->connected())
|
if ( ! _client->connected())
|
||||||
{
|
{
|
||||||
// KH fix bug https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/38
|
// KH fix bug https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/38
|
||||||
_HTTPcode = HTTPCODE_NOT_CONNECTED;
|
_timeout = DEFAULT_RX_TIMEOUT;
|
||||||
_setReadyState(readyStateDone);
|
|
||||||
|
|
||||||
///////////////////////////
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user