8000 Respect timeout with SSL by d-a-v · Pull Request #8899 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Respect timeout with SSL #8899

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click t 8000 o select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
typo
  • Loading branch information
d-a-v authored Apr 4, 2023
commit 1e0cfff7cab808fe14a053748585d092aeea6b0a
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void loop() {
#endif

HTTPClient https;
https.setWalTime(10000); // do not exceed 10s while getting data
https.setWallTime(10000); // do not exceed 10s while getting data
client->setWallTime(20000); // do not exceed 20s during handshake

// Try to reduce RAM footprint when SSL server allows it
Expand Down
0