Ronald Cron | 3d580bf | 2022-02-18 17:24:56 +0100 | [diff] [blame] | 1 | /** |
| 2 | * TLS 1.2 and 1.3 client-side functions |
| 3 | * |
| 4 | * Copyright The Mbed TLS Contributors |
Dave Rodgman | 16799db | 2023-11-02 19:47:20 +0000 | [diff] [blame] | 5 | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
Ronald Cron | 3d580bf | 2022-02-18 17:24:56 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef MBEDTLS_SSL_CLIENT_H |
| 9 | #define MBEDTLS_SSL_CLIENT_H |
| 10 | |
| 11 | #include "common.h" |
| 12 | |
| 13 | #if defined(MBEDTLS_SSL_TLS_C) |
| 14 | #include "ssl_misc.h" |
| 15 | #endif |
| 16 | |
| 17 | #include <stddef.h> |
| 18 | |
Manuel Pégourié-Gonnard | a82a8b9 | 2022-06-17 10:53:58 +0200 | [diff] [blame] | 19 | MBEDTLS_CHECK_RETURN_CRITICAL |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 20 | int mbedtls_ssl_write_client_hello(mbedtls_ssl_context *ssl); |
Ronald Cron | 3d580bf | 2022-02-18 17:24:56 +0100 | [diff] [blame] | 21 | |
| 22 | #endif /* MBEDTLS_SSL_CLIENT_H */ |