rename nst early data write function
Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
parent
391c943340
commit
3db60dfe5e
1 changed files with 6 additions and 6 deletions
|
@ -3214,7 +3214,7 @@ static int ssl_tls13_prepare_new_session_ticket(mbedtls_ssl_context *ssl,
|
||||||
* } EarlyDataIndication;
|
* } EarlyDataIndication;
|
||||||
*/
|
*/
|
||||||
MBEDTLS_CHECK_RETURN_CRITICAL
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
||||||
static int ssl_tls13_write_early_data_ext_of_nst(mbedtls_ssl_context *ssl,
|
static int ssl_tls13_write_nst_early_data_ext(mbedtls_ssl_context *ssl,
|
||||||
unsigned char *buf,
|
unsigned char *buf,
|
||||||
const unsigned char *end,
|
const unsigned char *end,
|
||||||
size_t *out_len)
|
size_t *out_len)
|
||||||
|
@ -3363,9 +3363,9 @@ static int ssl_tls13_write_new_session_ticket_body(mbedtls_ssl_context *ssl,
|
||||||
p += 2;
|
p += 2;
|
||||||
|
|
||||||
#if defined(MBEDTLS_SSL_EARLY_DATA)
|
#if defined(MBEDTLS_SSL_EARLY_DATA)
|
||||||
if ((ret = ssl_tls13_write_early_data_ext_of_nst(
|
if ((ret = ssl_tls13_write_nst_early_data_ext(
|
||||||
ssl, p, end, &output_len)) != 0) {
|
ssl, p, end, &output_len)) != 0) {
|
||||||
MBEDTLS_SSL_DEBUG_RET(1, "ssl_tls13_write_early_data_ext_of_nst", ret);
|
MBEDTLS_SSL_DEBUG_RET(1, "ssl_tls13_write_nst_early_data_ext", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
p += output_len;
|
p += output_len;
|
||||||
|
|
Loading…
Reference in a new issue