| 1900 | } |
| 1901 | |
| 1902 | int |
| 1903 | response_status_cb (http_parser *p, const char *buf, size_t len) |
| 1904 | { |
| 1905 | assert(p == parser); |
| 1906 | strlncat(messages[num_messages].response_status, |
| 1907 | sizeof(messages[num_messages].response_status), |
| 1908 | buf, |
| 1909 | len); |
| 1910 | return 0; |
| 1911 | } |
| 1912 | |
| 1913 | int |
| 1914 | chunk_header_cb (http_parser *p) |
no test coverage detected