OCT 1. 修正下载时间超时计算

This commit is contained in:
huangxin 2023-02-21 09:45:10 +08:00
parent 8dc41c49cd
commit a2f4f18c19
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ extern "C" {
#include <uv.h>
#define LIBUV_CURRENT_TIME_S() (uv_hrtime() / 1000000000)
#define LIBUV_CURRENT_TIME_S() (time(NULL))
typedef void (*system_exit_cb)(void *);