Merge remote-tracking branch 'origin/pr/2781' into development
* origin/pr/2781: Documentation fixes according to review Remove unused label in ssl_client2/ssl_server2 Add missing word in documentation of mbedtls_ssl_check_record() cli/srv ex: Add dbg msg if record checking gives inconsistent result Fix minor issues in documentation of mbedtls_ssl_check_record() State that record checking is DTLS only and doesn't check content type Update version_features.c Pass dgrams to mbedtls_ssl_check_record in ssl_client2/server2 Add IO wrappers to ssl_server2 as interm's between NET and SSL layer Add IO wrappers to ssl_client2 as interm's between NET and SSL layer Introduce configuration option and API for SSL record checking
This commit is contained in:
commit
9a09f511b5
7 changed files with 366 additions and 15 deletions
|
@ -1350,6 +1350,20 @@
|
|||
*/
|
||||
#define MBEDTLS_SSL_ALL_ALERT_MESSAGES
|
||||
|
||||
/**
|
||||
* \def MBEDTLS_SSL_RECORD_CHECKING
|
||||
*
|
||||
* Enable the function mbedtls_ssl_check_record() which can be used to check
|
||||
* the validity and authenticity of an incoming record, to verify that it has
|
||||
* not been seen before. These checks are performed without modifying the
|
||||
* externally visible state of the SSL context.
|
||||
*
|
||||
* See mbedtls_ssl_check_record() for more information.
|
||||
*
|
||||
* Uncomment to enable support for record checking.
|
||||
*/
|
||||
#define MBEDTLS_SSL_RECORD_CHECKING
|
||||
|
||||
/**
|
||||
* \def MBEDTLS_SSL_DTLS_CONNECTION_ID
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue