mirror of
https://github.com/nginx/nginx.git
synced 2024-12-16 22:30:27 +08:00
19 lines
314 B
C
19 lines
314 B
C
|
#ifndef _NGX_TIMES_H_INCLUDED_
|
||
|
#define _NGX_TIMES_H_INCLUDED_
|
||
|
|
||
|
|
||
|
#include <ngx_config.h>
|
||
|
#include <ngx_core.h>
|
||
|
|
||
|
|
||
|
time_t ngx_time();
|
||
|
void ngx_time_update();
|
||
|
|
||
|
|
||
|
extern time_t ngx_cached_time;
|
||
|
extern ngx_str_t ngx_cached_http_time;
|
||
|
extern ngx_str_t ngx_cached_http_log_time;
|
||
|
|
||
|
|
||
|
#endif /* _NGX_TIMES_H_INCLUDED_ */
|