nginx-quic/src/http/ngx_http_get_time.c
2002-12-15 06:25:09 +00:00

14 lines
217 B
C

#include <nginx.h>
#include <ngx_config.h>
#include <ngx_types.h>
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);
}