MCPcopy Create free account
hub / github.com/ElementsProject/lightning / append_plugin_once

Function append_plugin_once

lightningd/plugin_hook.c:700–707  ·  view source on GitHub ↗

Plugins could fail due to multiple hooks, but only add once. */

Source from the content-addressed store, hash-verified

698
699/* Plugins could fail due to multiple hooks, but only add once. */
700static void append_plugin_once(struct plugin ***ret, struct plugin *p)
701{
702 for (size_t i = 0; i < tal_count(*ret); i++) {
703 if ((*ret)[i] == p)
704 return;
705 }
706 tal_arr_expand(ret, p);
707}
708
709struct plugin **plugin_hooks_make_ordered(const tal_t *ctx,
710 struct logger *log)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected