| 2050 | } |
| 2051 | |
| 2052 | int |
| 2053 | pause_header_field_cb (http_parser *p, const char *buf, size_t len) |
| 2054 | { |
| 2055 | http_parser_pause(p, 1); |
| 2056 | *current_pause_parser = settings_dontcall; |
| 2057 | return header_field_cb(p, buf, len); |
| 2058 | } |
| 2059 | |
| 2060 | int |
| 2061 | pause_header_value_cb (http_parser *p, const char *buf, size_t len) |
nothing calls this directly
no test coverage detected