Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /**
  2.  * \file net.h
  3.  *
  4.  * \brief Deprecated header file that includes net_sockets.h
  5.  *
  6.  * \deprecated Superseded by mbedtls/net_sockets.h
  7.  */
  8. /*
  9.  *  Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
  10.  *  SPDX-License-Identifier: GPL-2.0
  11.  *
  12.  *  This program is free software; you can redistribute it and/or modify
  13.  *  it under the terms of the GNU General Public License as published by
  14.  *  the Free Software Foundation; either version 2 of the License, or
  15.  *  (at your option) any later version.
  16.  *
  17.  *  This program is distributed in the hope that it will be useful,
  18.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  *  GNU General Public License for more details.
  21.  *
  22.  *  You should have received a copy of the GNU General Public License along
  23.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  24.  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  25.  *
  26.  *  This file is part of mbed TLS (https://tls.mbed.org)
  27.  */
  28. #if !defined(MBEDTLS_CONFIG_FILE)
  29. #include "config.h"
  30. #else
  31. #include MBEDTLS_CONFIG_FILE
  32. #endif
  33.  
  34. #if !defined(MBEDTLS_DEPRECATED_REMOVED)
  35. #include "net_sockets.h"
  36. #if defined(MBEDTLS_DEPRECATED_WARNING)
  37. #warning "Deprecated header file: Superseded by mbedtls/net_sockets.h"
  38. #endif /* MBEDTLS_DEPRECATED_WARNING */
  39. #endif /* !MBEDTLS_DEPRECATED_REMOVED */
  40.