-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGES: - Timeout in case of sending a Confirmable Notification does not cancel the observation anymore by default. Features: - Added a ``connection_error_is_registration_failure`` configuration option that allows handling connection errors as Register failures, including the automatic retry mechanism - Added experimental server connection status API. Improvements: - (commercial version only) Changed MSISDN matching method in SMS binding feature to allow handling messages with Short Codes as originating number Bugfixes: - Fixed a corner case in which a connection error during a non-first Register attempt could cause uncontrolled infinite retries - Fixed a bug in demo of Advanced Firmware Update module that prevented proper handling of security config for targets other than APP - Fixed a bug that caused anjay_next_planned_notify_trigger family APIs to return an invalid value after canceling observations
- Loading branch information
Showing
59 changed files
with
1,223 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule avs_commons
updated
13 files
+13 −0 | CHANGELOG.md | |
+1 −1 | CMakeLists.txt | |
+36 −7 | include_public/avsystem/commons/avs_base64.h | |
+115 −0 | include_public/avsystem/commons/avs_crypto_pki.h | |
+16 −26 | src/algorithm/avs_base64.c | |
+2 −1 | src/crypto/CMakeLists.txt | |
+10 −0 | src/crypto/avs_crypto_utils.c | |
+197 −30 | src/crypto/mbedtls/avs_mbedtls_pki.c | |
+19 −0 | src/crypto/openssl/avs_openssl_pki.c | |
+34 −2 | src/net/mbedtls/avs_mbedtls_socket.c | |
+52 −0 | tests/algorithm/base64.c | |
+136 −0 | tests/crypto/mbedtls/mbedtls_pki.c | |
+63 −0 | tests/crypto/pki.c |
Oops, something went wrong.