| 619 | } |
| 620 | |
| 621 | bool rpc_scan_datastore_str(struct plugin *plugin, |
| 622 | const char *path, |
| 623 | ...) |
| 624 | { |
| 625 | bool ret; |
| 626 | va_list ap; |
| 627 | |
| 628 | va_start(ap, path); |
| 629 | ret = rpc_scan_datastore(plugin, path, "string", ap); |
| 630 | va_end(ap); |
| 631 | return ret; |
| 632 | } |
| 633 | |
| 634 | /* This variant scans the hex encoding, not the string */ |
| 635 | bool rpc_scan_datastore_hex(struct plugin *plugin, |
no test coverage detected