8000 Add SSL Session capability to speed reconnections by earlephilhower · Pull Request #5160 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Add SSL Session capability to speed reconnections #5160

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

Merged
merged 8 commits into from
Sep 28, 2018
Merged
Changes from 1 commit
Commits
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
Merge branch 'master' into session
  • Loading branch information
earlephilhower authored Sep 28, 2018
commit 9c672e443e947ac4eef8c7ffdb85bb5c029c587d
2 changes: 2 additions & 0 deletions libraries/ESP8266WiFi/src/WiFiClientSecureBearSSL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ void WiFiClientSecure::_clear() {
_oom_err = false;
_deleteChainKeyTA = false;
_session = nullptr;
_cipher_list = NULL;
_cipher_cnt = 0;
}

void WiFiClientSecure::_clearAuthenticationSettings() {
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0