| 2066 | } |
| 2067 | |
| 2068 | int |
| 2069 | pause_request_url_cb (http_parser *p, const char *buf, size_t len) |
| 2070 | { |
| 2071 | http_parser_pause(p, 1); |
| 2072 | *current_pause_parser = settings_dontcall; |
| 2073 | return request_url_cb(p, buf, len); |
| 2074 | } |
| 2075 | |
| 2076 | int |
| 2077 | pause_body_cb (http_parser *p, const char *buf, size_t len) |
nothing calls this directly
no test coverage detected