| 1134 | } |
| 1135 | |
| 1136 | static void parse_expires(HTTPContext *s, const char *p) |
| 1137 | { |
| 1138 | struct tm tm; |
| 1139 | |
| 1140 | if (!parse_http_date(p, &tm)) { |
| 1141 | s->expires = av_timegm(&tm); |
| 1142 | } |
| 1143 | } |
| 1144 | |
| 1145 | static void parse_cache_control(HTTPContext *s, const char *p) |
| 1146 | { |
no test coverage detected