| 2074 | } |
| 2075 | |
| 2076 | int |
| 2077 | pause_body_cb (http_parser *p, const char *buf, size_t len) |
| 2078 | { |
| 2079 | http_parser_pause(p, 1); |
| 2080 | *current_pause_parser = settings_dontcall; |
| 2081 | return body_cb(p, buf, len); |
| 2082 | } |
| 2083 | |
| 2084 | int |
| 2085 | pause_headers_complete_cb (http_parser *p) |
nothing calls this directly
no test coverage detected