2022-02-18 17:24:56 +01:00
|
|
|
/**
|
|
|
|
* TLS 1.2 and 1.3 client-side functions
|
|
|
|
*
|
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 20:47:20 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2022-02-18 17:24:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MBEDTLS_SSL_CLIENT_H
|
|
|
|
#define MBEDTLS_SSL_CLIENT_H
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_TLS_C)
|
|
|
|
#include "ssl_misc.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2022-06-17 10:53:58 +02:00
|
|
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ssl_write_client_hello(mbedtls_ssl_context *ssl);
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_SSL_CLIENT_H */
|