2009-01-03 21:22:43 +00:00
|
|
|
/**
|
|
|
|
* \file net.h
|
2009-01-04 16:27:10 +00:00
|
|
|
*
|
2017-05-14 13:17:33 +00:00
|
|
|
* \brief Deprecated header file that includes net_sockets.h
|
2011-01-06 12:28:03 +00:00
|
|
|
*
|
2018-01-05 15:33:17 +00:00
|
|
|
* \deprecated Superseded by mbedtls/net_sockets.h
|
|
|
|
*/
|
|
|
|
/*
|
2016-09-14 13:32:09 +00:00
|
|
|
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
|
2015-09-04 12:21:07 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2010-07-18 20:36:00 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* 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
|
2009-01-04 16:27:10 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-01-04 16:27:10 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* 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.
|
2009-01-04 16:27:10 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2009-01-03 21:22:43 +00:00
|
|
|
*/
|
2018-02-14 14:02:41 +00:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2019-07-04 19:01:14 +00:00
|
|
|
#include "mbedtls/config.h"
|
2018-02-14 14:02:41 +00:00
|
|
|
#else
|
|
|
|
#include MBEDTLS_CONFIG_FILE
|
|
|
|
#endif
|
2009-01-03 21:22:43 +00:00
|
|
|
|
2016-09-14 13:32:09 +00:00
|
|
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
2019-07-04 19:01:14 +00:00
|
|
|
#include "mbedtls/net_sockets.h"
|
2016-09-14 13:32:09 +00:00
|
|
|
#if defined(MBEDTLS_DEPRECATED_WARNING)
|
|
|
|
#warning "Deprecated header file: Superseded by mbedtls/net_sockets.h"
|
|
|
|
#endif /* MBEDTLS_DEPRECATED_WARNING */
|
|
|
|
#endif /* !MBEDTLS_DEPRECATED_REMOVED */
|