| 1837 | } |
| 1838 | |
| 1839 | int |
| 1840 | count_body_cb (http_parser *p, const char *buf, size_t len) |
| 1841 | { |
| 1842 | assert(p == parser); |
| 1843 | assert(buf); |
| 1844 | messages[num_messages].body_size += len; |
| 1845 | check_body_is_final(p); |
| 1846 | return 0; |
| 1847 | } |
| 1848 | |
| 1849 | int |
| 1850 | message_begin_cb (http_parser *p) |
nothing calls this directly
no test coverage detected