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

Function append_plugin_once

lightningd/plugin_hook.c:551–558  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

549
550/* Plugins could fail due to multiple hooks, but only add once. */
551static void append_plugin_once(struct plugin ***ret, struct plugin *p)
552{
553 for (size_t i = 0; i < tal_count(*ret); i++) {
554 if ((*ret)[i] == p)
555 return;
556 }
557 tal_arr_expand(ret, p);
558}
559
560struct plugin **plugin_hooks_make_ordered(const tal_t *ctx)
561{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected