mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 19:05:42 +01:00
ab7ce96d7b
Move from ssl_*2.c to ssl_test_lib.h: * The inclusion of the config header file (identical). * The fallback definitions of platform functions (almost identical: server2 also had snprintf and the order and whitespace was slightly different). * The compilation guards checking that required options are enabled (tweaked to make them common, with MBEDTLS_SSL_{CLI,SRV}_C separated out). Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
28 lines
970 B
C
28 lines
970 B
C
/*
|
|
* Common code library for SSL test programs.
|
|
*
|
|
* In addition to the functions in this file, there is shared source code
|
|
* that cannot be compiled separately in "ssl_test_common_source.c".
|
|
*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "ssl_test_lib.h"
|
|
|
|
#if !defined(MBEDTLS_SSL_TEST_IMPOSSIBLE)
|
|
|
|
#endif /* !defined(MBEDTLS_SSL_TEST_IMPOSSIBLE) */
|