mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 22:51:05 +00:00
Merge remote-tracking branch 'upstream-public/pr/1532' into mbedtls-2.1-proposed
This commit is contained in:
commit
cbe731c653
|
@ -33,6 +33,7 @@ Changes
|
||||||
* Provide an empty implementation of mbedtls_pkcs5_pbes2() when
|
* Provide an empty implementation of mbedtls_pkcs5_pbes2() when
|
||||||
MBEDTLS_ASN1_PARSE_C is not enabled. This allows the use of PBKDF2
|
MBEDTLS_ASN1_PARSE_C is not enabled. This allows the use of PBKDF2
|
||||||
without PBES2. Fixed by Marcos Del Sol Vives.
|
without PBES2. Fixed by Marcos Del Sol Vives.
|
||||||
|
* Improve the documentation of mbedtls_net_accept(). Contributed by Ivan Krylov.
|
||||||
|
|
||||||
= mbed TLS 2.1.11 branch released 2018-03-16
|
= mbed TLS 2.1.11 branch released 2018-03-16
|
||||||
|
|
||||||
|
|
|
@ -117,9 +117,10 @@ int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char
|
||||||
*
|
*
|
||||||
* \param bind_ctx Relevant socket
|
* \param bind_ctx Relevant socket
|
||||||
* \param client_ctx Will contain the connected client socket
|
* \param client_ctx Will contain the connected client socket
|
||||||
* \param client_ip Will contain the client IP address
|
* \param client_ip Will contain the client IP address, can be NULL
|
||||||
* \param buf_size Size of the client_ip buffer
|
* \param buf_size Size of the client_ip buffer
|
||||||
* \param ip_len Will receive the size of the client IP written
|
* \param ip_len Will receive the size of the client IP written,
|
||||||
|
* can be NULL if client_ip is null
|
||||||
*
|
*
|
||||||
* \return 0 if successful, or
|
* \return 0 if successful, or
|
||||||
* MBEDTLS_ERR_NET_ACCEPT_FAILED, or
|
* MBEDTLS_ERR_NET_ACCEPT_FAILED, or
|
||||||
|
|
Loading…
Reference in a new issue