| 113 | } |
| 114 | |
| 115 | static void hdr_nocache(struct strbuf *hdr) |
| 116 | { |
| 117 | hdr_str(hdr, "Expires", "Fri, 01 Jan 1980 00:00:00 GMT"); |
| 118 | hdr_str(hdr, "Pragma", "no-cache"); |
| 119 | hdr_str(hdr, "Cache-Control", "no-cache, max-age=0, must-revalidate"); |
| 120 | } |
| 121 | |
| 122 | static void hdr_cache_forever(struct strbuf *hdr) |
| 123 | { |
no test coverage detected