mirror of
https://github.com/curl/curl.git
synced 2026-05-20 16:46:21 +03:00
Move `Curl_gmtime()` to curlx and rename to `curlx_gmtime()`. Then call
the internal wrapper also from the curl tool, to avoid using the banned
`gmtime()` directly, and using better, thread-safe alternatives when
available.
Windows `gmtime_s()` requires mingw-w64 v4+ or MSVC. Use local
workaround to also support mingw-w64 v3. `gmtime_s()` also makes
defining `_CRT_SECURE_NO_WARNINGS` unnecessary.
Also:
- lib: drop unused `parsedate.h` includes.
- drop redundant cast from `gmtime_r()` result.
- autotools: reverse condition in the proto detection to avoid
misleading readers. (the condition plays no role in detection.)
- note Windows XP's default `msvcrt.dll` doesn't offer secure CRT APIs.
XP likely needs a newer version of this DLL, or may not run.
Refs:
https://learn.microsoft.com/cpp/c-runtime-library/reference/gmtime-gmtime32-gmtime64
https://learn.microsoft.com/cpp/c-runtime-library/reference/gmtime-s-gmtime32-s-gmtime64-s
https://pubs.opengroup.org/onlinepubs/9799919799/functions/gmtime.html
https://linux.die.net/man/3/gmtime_r
Ref: #19957 (for `localtime_r()`)
Follow-up to 54d9f060b4
Closes #19955
70 lines
2.4 KiB
C
70 lines
2.4 KiB
C
#ifndef HEADER_CURL_TIMEVAL_H
|
|
#define HEADER_CURL_TIMEVAL_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include "../curl_setup.h"
|
|
|
|
#include "timediff.h"
|
|
|
|
struct curltime {
|
|
time_t tv_sec; /* seconds */
|
|
int tv_usec; /* microseconds */
|
|
};
|
|
|
|
#ifdef _WIN32
|
|
/* For tool or tests, we must initialize before calling curlx_now() */
|
|
void curlx_now_init(void);
|
|
#endif
|
|
|
|
struct curltime curlx_now(void);
|
|
|
|
/*
|
|
* Make sure that the first argument (newer) is the more recent time and older
|
|
* is the older time, as otherwise you get a weird negative time-diff back...
|
|
*
|
|
* Returns: the time difference in number of milliseconds.
|
|
*/
|
|
timediff_t curlx_timediff_ms(struct curltime newer, struct curltime older);
|
|
|
|
/*
|
|
* Make sure that the first argument (newer) is the more recent time and older
|
|
* is the older time, as otherwise you get a weird negative time-diff back...
|
|
*
|
|
* Returns: the time difference in number of milliseconds, rounded up.
|
|
*/
|
|
timediff_t curlx_timediff_ceil_ms(struct curltime newer,
|
|
struct curltime older);
|
|
|
|
/*
|
|
* Make sure that the first argument (newer) is the more recent time and older
|
|
* is the older time, as otherwise you get a weird negative time-diff back...
|
|
*
|
|
* Returns: the time difference in number of microseconds.
|
|
*/
|
|
timediff_t curlx_timediff_us(struct curltime newer, struct curltime older);
|
|
|
|
CURLcode curlx_gmtime(time_t intime, struct tm *store);
|
|
|
|
#endif /* HEADER_CURL_TIMEVAL_H */
|