Add missing word in documentation of mbedtls_ssl_check_record()

This commit is contained in:
Hanno Becker 2019-07-24 14:23:16 +01:00 committed by Jarno Lamsa
parent 91f8327e40
commit 9548f114f3

View File

@ -1780,8 +1780,8 @@ void mbedtls_ssl_conf_read_timeout( mbedtls_ssl_config *conf, uint32_t timeout )
* \note This routine only checks whether the provided buffer begins
* with a valid, fresh and authentic record, but does not check
* potential data following the initial record. In particular,
* it is possible to pass DTLS datagrams containing records,
* in which case only the first record is checked.
* it is possible to pass DTLS datagrams containing multiple
* records, in which case only the first record is checked.
*
* \note This function modifies the input buffer \p buf. If you need
* to preserve the original record, you have to maintain a copy.