mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-04 09:59:47 +00:00
Document FD_SETSIZE limitation for mbedtls_net_recv_timeout
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
33d816aff9
commit
51917a82e8
|
@ -219,6 +219,10 @@ int mbedtls_net_send( void *ctx, const unsigned char *buf, size_t len );
|
|||
* 'timeout' seconds. If no error occurs, the actual amount
|
||||
* read is returned.
|
||||
*
|
||||
* \note The current implementation of this function uses
|
||||
* select() and returns an error if the file descriptor
|
||||
* is beyond \c FD_SETSIZE.
|
||||
*
|
||||
* \param ctx Socket
|
||||
* \param buf The buffer to write to
|
||||
* \param len Maximum length of the buffer
|
||||
|
|
Loading…
Reference in a new issue