This variant scans the hex encoding, not the string */
| 633 | |
| 634 | /* This variant scans the hex encoding, not the string */ |
| 635 | bool rpc_scan_datastore_hex(struct plugin *plugin, |
| 636 | const char *path, |
| 637 | ...) |
| 638 | { |
| 639 | bool ret; |
| 640 | va_list ap; |
| 641 | |
| 642 | va_start(ap, path); |
| 643 | ret = rpc_scan_datastore(plugin, path, "hex", ap); |
| 644 | va_end(ap); |
| 645 | return ret; |
| 646 | } |
| 647 | |
| 648 | void rpc_enable_batching(struct plugin *plugin) |
| 649 | { |
no test coverage detected