mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 16:25:43 +01:00
Merge remote-tracking branch 'upstream-public/pr/936' into development-proposed
This commit is contained in:
commit
29d7d4da2f
@ -43,6 +43,7 @@ Changes
|
|||||||
* Remove support for the library reference configuration for picocoin.
|
* Remove support for the library reference configuration for picocoin.
|
||||||
* MD functions deprecated in 2.7.0 are no longer inline, to provide
|
* MD functions deprecated in 2.7.0 are no longer inline, to provide
|
||||||
a migration path for those depending on the library's ABI.
|
a migration path for those depending on the library's ABI.
|
||||||
|
* Clarify the documentation of mbedtls_ssl_setup.
|
||||||
|
|
||||||
= mbed TLS 2.7.0 branch released 2018-02-03
|
= mbed TLS 2.7.0 branch released 2018-02-03
|
||||||
|
|
||||||
|
@ -971,8 +971,13 @@ void mbedtls_ssl_init( mbedtls_ssl_context *ssl );
|
|||||||
* \note No copy of the configuration context is made, it can be
|
* \note No copy of the configuration context is made, it can be
|
||||||
* shared by many mbedtls_ssl_context structures.
|
* shared by many mbedtls_ssl_context structures.
|
||||||
*
|
*
|
||||||
* \warning Modifying the conf structure after it has been used in this
|
* \warning The conf structure will be accessed during the session.
|
||||||
* function is unsupported!
|
* It must not be modified or freed as long as the session
|
||||||
|
* is active.
|
||||||
|
*
|
||||||
|
* \warning This function must be called exactly once per context.
|
||||||
|
* Calling mbedtls_ssl_setup again is not supported, even
|
||||||
|
* if no session is active.
|
||||||
*
|
*
|
||||||
* \param ssl SSL context
|
* \param ssl SSL context
|
||||||
* \param conf SSL configuration to use
|
* \param conf SSL configuration to use
|
||||||
|
Loading…
Reference in New Issue
Block a user