| 252 | } |
| 253 | |
| 254 | static void |
| 255 | stats_process_accept(TSCont contp, stats_state *my_state) |
| 256 | { |
| 257 | my_state->req_buffer = TSIOBufferCreate(); |
| 258 | my_state->resp_buffer = TSIOBufferCreate(); |
| 259 | my_state->resp_reader = TSIOBufferReaderAlloc(my_state->resp_buffer); |
| 260 | my_state->read_vio = TSVConnRead(my_state->net_vc, contp, my_state->req_buffer, INT64_MAX); |
| 261 | } |
| 262 | |
| 263 | static int |
| 264 | stats_add_data_to_resp_buffer(const char *s, stats_state *my_state) |
no test coverage detected