123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /**
- * \file platform_time.h
- *
- * \brief mbed TLS Platform time abstraction
- *
- * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
- * SPDX-License-Identifier: GPL-2.0
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * This file is part of mbed TLS (https://tls.mbed.org)
- */
- #ifndef MBEDTLS_PLATFORM_TIME_H
- #define MBEDTLS_PLATFORM_TIME_H
- #if !defined(MBEDTLS_CONFIG_FILE)
- #include "config.h"
- #else
- #include MBEDTLS_CONFIG_FILE
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * \name SECTION: Module settings
- *
- * The configuration options you can set for this module are in this section.
- * Either change them in config.h or define them on the compiler command line.
- * \{
- */
- /*
- * The time_t datatype
- */
- #if defined(MBEDTLS_PLATFORM_TIME_TYPE_MACRO)
- typedef MBEDTLS_PLATFORM_TIME_TYPE_MACRO mbedtls_time_t;
- #else
- /* For time_t */
- #include <time.h>
- typedef time_t mbedtls_time_t;
- #endif /* MBEDTLS_PLATFORM_TIME_TYPE_MACRO */
- /*
- * The function pointers for time
- */
- #if defined(MBEDTLS_PLATFORM_TIME_ALT)
- extern mbedtls_time_t (*mbedtls_time)( mbedtls_time_t* time );
- /**
- * \brief Set your own time function pointer
- *
- * \param time_func the time function implementation
- *
- * \return 0
- */
- int mbedtls_platform_set_time( mbedtls_time_t (*time_func)( mbedtls_time_t* time ) );
- #else
- #if defined(MBEDTLS_PLATFORM_TIME_MACRO)
- #define mbedtls_time MBEDTLS_PLATFORM_TIME_MACRO
- #else
- #define mbedtls_time time
- #endif /* MBEDTLS_PLATFORM_TIME_MACRO */
- #endif /* MBEDTLS_PLATFORM_TIME_ALT */
- #ifdef __cplusplus
- }
- #endif
- #endif /* platform_time.h */
|