| 120 | } |
| 121 | |
| 122 | static void hdr_cache_forever(struct strbuf *hdr) |
| 123 | { |
| 124 | timestamp_t now = time(NULL); |
| 125 | hdr_date(hdr, "Date", now); |
| 126 | hdr_date(hdr, "Expires", now + 31536000); |
| 127 | hdr_str(hdr, "Cache-Control", "public, max-age=31536000"); |
| 128 | } |
| 129 | |
| 130 | static void end_headers(struct strbuf *hdr) |
| 131 | { |
no test coverage detected