mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 13:25:43 +01:00
eaac0d7105
These are always handed to subdaemons as a set, so group them. This makes it easier to add an fd (in the next patch). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
19 lines
411 B
C
19 lines
411 B
C
#include <lightningd/peer_comms.h>
|
|
#include <unistd.h>
|
|
|
|
static void destroy_peer_comms(struct peer_comms *pcomms)
|
|
{
|
|
if (pcomms->peer_fd != -1)
|
|
close(pcomms->peer_fd);
|
|
if (pcomms->gossip_fd != -1)
|
|
close(pcomms->gossip_fd);
|
|
}
|
|
|
|
struct peer_comms *new_peer_comms(const tal_t *ctx)
|
|
{
|
|
struct peer_comms *pcomms = tal(ctx, struct peer_comms);
|
|
|
|
tal_add_destructor(pcomms, destroy_peer_comms);
|
|
return pcomms;
|
|
}
|