| 104 | } |
| 105 | |
| 106 | void jsonrpc_io_parse_done(struct jsonrpc_io *json_in) |
| 107 | { |
| 108 | size_t bytes_parsed = json_in->toks[0].end; |
| 109 | membuf_consume(&json_in->membuf, bytes_parsed); |
| 110 | |
| 111 | jsmn_init(&json_in->parser); |
| 112 | toks_reset(json_in->toks); |
| 113 | } |
| 114 | |
| 115 | struct io_plan *jsonrpc_io_read_(struct io_conn *conn, |
| 116 | struct jsonrpc_io *json_in, |