| 2114 | } |
| 2115 | |
| 2116 | int |
| 2117 | pause_chunk_complete_cb (http_parser *p) |
| 2118 | { |
| 2119 | http_parser_pause(p, 1); |
| 2120 | *current_pause_parser = settings_dontcall; |
| 2121 | return chunk_complete_cb(p); |
| 2122 | } |
| 2123 | |
| 2124 | static http_parser_settings settings_pause = |
| 2125 | {.on_message_begin = pause_message_begin_cb |
nothing calls this directly
no test coverage detected