]> git.ipfire.org Git - thirdparty/openssl.git/blame - ssl/ssl_utst.c
Raise an error on syscall failure in tls_retry_write_records
[thirdparty/openssl.git] / ssl / ssl_utst.c
CommitLineData
0f113f3e 1/*
846e33c7 2 * Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved.
e0fc7961 3 *
2c18d164 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
846e33c7
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
e0fc7961
DSH
8 */
9
706457b7 10#include "ssl_local.h"
e0fc7961
DSH
11
12#ifndef OPENSSL_NO_UNIT_TEST
13
0f113f3e
MC
14static const struct openssl_ssl_test_functions ssl_test_functions = {
15 ssl_init_wbio_buffer,
0f113f3e 16};
e0fc7961
DSH
17
18const struct openssl_ssl_test_functions *SSL_test_functions(void)
0f113f3e
MC
19{
20 return &ssl_test_functions;
21}
e0fc7961
DSH
22
23#endif