| 1608 | } |
| 1609 | |
| 1610 | static void plugin_manifest_timeout(struct plugin *plugin) |
| 1611 | { |
| 1612 | bool startup = plugin->plugins->startup; |
| 1613 | |
| 1614 | plugin_kill(plugin, LOG_UNUSUAL, |
| 1615 | "timed out %s", state_desc(plugin)); |
| 1616 | |
| 1617 | if (startup) |
| 1618 | fatal("Can't recover from plugin failure, terminating."); |
| 1619 | } |
| 1620 | |
| 1621 | static const char *plugin_notifications_add(const char *buffer, |
| 1622 | const jsmntok_t *result, |
nothing calls this directly
no test coverage detected