2
0

ssl_client.h 443 B

12345678910111213141516171819202122
  1. /**
  2. * TLS 1.2 and 1.3 client-side functions
  3. *
  4. * Copyright The Mbed TLS Contributors
  5. * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
  6. */
  7. #ifndef MBEDTLS_SSL_CLIENT_H
  8. #define MBEDTLS_SSL_CLIENT_H
  9. #include "common.h"
  10. #if defined(MBEDTLS_SSL_TLS_C)
  11. #include "ssl_misc.h"
  12. #endif
  13. #include <stddef.h>
  14. MBEDTLS_CHECK_RETURN_CRITICAL
  15. int mbedtls_ssl_write_client_hello(mbedtls_ssl_context *ssl);
  16. #endif /* MBEDTLS_SSL_CLIENT_H */