Skip to content

Commit

Permalink
Which response read timed out can be occured in application because …
Browse files Browse the repository at this point in the history
…of missing response.
  • Loading branch information
mobizt committed Aug 10, 2023
1 parent 22fc8ea commit 4aeb22a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ESP_SSLClient",
"version": "2.0.9",
"version": "2.1.0",
"keywords": "communication, REST, esp32, esp8266, arduino",
"description": "This library provided the Secure Layer Networking (SSL/TLS) TCP Client for ESP8266, ESP32 and Raspberry Pi RP2040, Teensy, SAMD, AVR and other Arduino devices (except for avr) that support external networking interfaces e.g., WiFiClient, EthernetClient and GSMClient.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=ESP_SSLClient

version=2.0.9
version=2.1.0

author=Mobizt

Expand Down
4 changes: 2 additions & 2 deletions src/ESP_SSLClient.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
*
* The ESP SSL Client Class, ESP_SSLClient.h v2.0.9
* The ESP SSL Client Class, ESP_SSLClient.h v2.1.0
*
* Created August 9, 2023
* Created August 10, 2023
*
* The MIT License (MIT)
* Copyright (c) 2023 K. Suwatchai (Mobizt)
Expand Down
6 changes: 2 additions & 4 deletions src/client/BSSL_TCP_Client.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* BSSL_TCP_Client v2.0.7 for Arduino devices.
* BSSL_TCP_Client v2.0.8 for Arduino devices.
*
* Created August 9, 2023
* Created August 10, 2023
*
* The MIT License (MIT)
* Copyright (c) 2023 K. Suwatchai (Mobizt)
Expand Down Expand Up @@ -134,8 +134,6 @@ uint8_t BSSL_TCP_Client::connected()

int BSSL_TCP_Client::available()
{
if (!_ssl_client.connected())
return 0;
return _ssl_client.available();
}

Expand Down
4 changes: 2 additions & 2 deletions src/client/BSSL_TCP_Client.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* BSSL_TCP_Client v2.0.7 for Arduino devices.
* BSSL_TCP_Client v2.0.8 for Arduino devices.
*
* Created August 9, 2023
* Created August 10, 2023
*
* The MIT License (MIT)
* Copyright (c) 2023 K. Suwatchai (Mobizt)
Expand Down

0 comments on commit 4aeb22a

Please sign in to comment.