| 1392 | } |
| 1393 | |
| 1394 | static void plugin_manifest_timeout(struct plugin *plugin) |
| 1395 | { |
| 1396 | bool startup = plugin->plugins->startup; |
| 1397 | |
| 1398 | plugin_kill(plugin, LOG_UNUSUAL, |
| 1399 | "timed out %s", state_desc(plugin)); |
| 1400 | |
| 1401 | if (startup) |
| 1402 | fatal("Can't recover from plugin failure, terminating."); |
| 1403 | } |
| 1404 | |
| 1405 | static const char *plugin_notifications_add(const char *buffer, |
| 1406 | const jsmntok_t *result, |
nothing calls this directly
no test coverage detected