Sign in
nginx
/
nginx
/
fe0f5cc6e1e48412235ae91c2f71ec2ec9110a60
/
.
/
src
/
http
/
ngx_http_get_time.c
blob: 971914e4da1d9be8bbfcae4a3bba48f6a408de13 [
file
]
#include
<ngx_config.h>
#include
<ngx_core.h>
size_t
ngx_http_get_time
(
char
*
buf
,
time_t
t
)
{
struct
tm
*
tp
;
tp
=
gmtime
(&
t
);
return
strftime
(
buf
,
30
,
"%a, %d %b %Y %H:%M:%S GMT"
,
tp
);
}