1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-26 07:02:15 +03:00

- Replace Crypto files with CryptoInterface which uses BearSSL as a cryptographic backend.

- Move cryptographic functions from JsonTranslator to CryptoInterface.

- Make AP activation separate from FloodingMesh::begin().

- Fix English bug.

- Improve comments.
This commit is contained in:
Anders
2019-11-05 22:29:59 +01:00
parent afc88f2652
commit 3132325bf8
15 changed files with 353 additions and 1363 deletions

View File

@ -55,7 +55,7 @@ void EncryptedConnectionLog::removeDuration()
void EncryptedConnectionLog::scheduleForRemoval()
{
// When we give the connection 0 remaining duration it will be removed during the next performEspnowMaintainance() call.
// When we give the connection 0 remaining duration it will be removed during the next performEspnowMaintenance() call.
// Duration must be changed before setting the scheduledForRemoval flag to true, since the flag is otherwise cleared.
setRemainingDuration(0);
setScheduledForRemoval(true);