mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2026-04-07 15:36:29 +00:00
Add the mbedtls prefix to ssl_check_dtls_clihlo_cookie
Signed-off-by: Andrzej Kurek <andrzej.kurek@arm.com>
This commit is contained in:
parent
e6487ab490
commit
078e9bcda6
3 changed files with 11 additions and 12 deletions
|
|
@ -5521,11 +5521,12 @@ void cookie_parsing( data_t *cookie, int exp_ret )
|
|||
0 );
|
||||
|
||||
TEST_EQUAL( mbedtls_ssl_setup( &ssl, &conf ), 0 );
|
||||
TEST_EQUAL( ssl_check_dtls_clihlo_cookie( &ssl, ssl.cli_id, ssl.cli_id_len,
|
||||
cookie->x, cookie->len,
|
||||
ssl.out_buf,
|
||||
MBEDTLS_SSL_OUT_CONTENT_LEN,
|
||||
&len ),
|
||||
TEST_EQUAL( mbedtls_ssl_check_dtls_clihlo_cookie( &ssl, ssl.cli_id,
|
||||
ssl.cli_id_len,
|
||||
cookie->x, cookie->len,
|
||||
ssl.out_buf,
|
||||
MBEDTLS_SSL_OUT_CONTENT_LEN,
|
||||
&len ),
|
||||
exp_ret );
|
||||
|
||||
mbedtls_ssl_free( &ssl );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue