mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
Fix compile issue about MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL
Signed-off-by: XiaokangQian <xiaokang.qian@arm.com>
This commit is contained in:
parent
a763498490
commit
46c6fc74f1
|
|
@ -19,6 +19,7 @@
|
||||||
#if !defined(MBEDTLS_SSL_TLS1_3_KEYS_H)
|
#if !defined(MBEDTLS_SSL_TLS1_3_KEYS_H)
|
||||||
#define MBEDTLS_SSL_TLS1_3_KEYS_H
|
#define MBEDTLS_SSL_TLS1_3_KEYS_H
|
||||||
|
|
||||||
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL)
|
||||||
/* This requires MBEDTLS_SSL_TLS1_3_LABEL( idx, name, string ) to be defined at
|
/* This requires MBEDTLS_SSL_TLS1_3_LABEL( idx, name, string ) to be defined at
|
||||||
* the point of use. See e.g. the definition of mbedtls_ssl_tls1_3_labels_union
|
* the point of use. See e.g. the definition of mbedtls_ssl_tls1_3_labels_union
|
||||||
* below. */
|
* below. */
|
||||||
|
|
@ -631,4 +632,5 @@ int mbedtls_ssl_tls1_3_calculate_expected_finished( mbedtls_ssl_context *ssl,
|
||||||
size_t *actual_len,
|
size_t *actual_len,
|
||||||
int from );
|
int from );
|
||||||
|
|
||||||
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL */
|
||||||
#endif /* MBEDTLS_SSL_TLS1_3_KEYS_H */
|
#endif /* MBEDTLS_SSL_TLS1_3_KEYS_H */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue