mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
e841e69b1b
We're weaning per-peer daemons off having a direct gossipd connection. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
55 lines
1.8 KiB
C
55 lines
1.8 KiB
C
#ifndef LIGHTNING_GOSSIPD_GOSSIP_GENERATION_H
|
|
#define LIGHTNING_GOSSIPD_GOSSIP_GENERATION_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
struct chan;
|
|
struct daemon;
|
|
struct half_chan;
|
|
struct local_chan;
|
|
struct gossip_store;
|
|
struct peer;
|
|
struct node;
|
|
|
|
/* Helper to get non-signature, non-timestamp parts of (valid!) channel_update */
|
|
void get_cupdate_parts(const u8 *channel_update,
|
|
const u8 *parts[2],
|
|
size_t sizes[2]);
|
|
|
|
|
|
/* Is this channel_update different from prev (not sigs and timestamps)?
|
|
* is_halfchan_defined(hc) must be true! */
|
|
bool cupdate_different(struct gossip_store *gs,
|
|
const struct half_chan *hc,
|
|
const u8 *cupdate);
|
|
|
|
/* Is this node_announcement different from prev (not sigs and timestamps)?
|
|
* node->bcast.index must be non-zero! */
|
|
bool nannounce_different(struct gossip_store *gs,
|
|
const struct node *node,
|
|
const u8 *nannounce,
|
|
bool *only_missing_tlv);
|
|
|
|
/* Should we announce our own node? Called at strategic places. */
|
|
void maybe_send_own_node_announce(struct daemon *daemon, bool startup);
|
|
|
|
/* Disable this local channel (lazily) */
|
|
void local_disable_chan(struct daemon *daemon, const struct chan *chan, int direction);
|
|
|
|
/* Re-enable this local channel */
|
|
void local_enable_chan(struct daemon *daemon, const struct chan *chan, int direction);
|
|
|
|
/* This is a refresh of a local channel which is > 13 days old. */
|
|
void refresh_local_channel(struct daemon *daemon,
|
|
struct chan *chan, int direction);
|
|
|
|
/* channeld (via lightningd) asks us to update the local channel. */
|
|
void handle_local_channel_update(struct daemon *daemon, const u8 *msg);
|
|
|
|
/* lightningd tells us it used the last channel_update we sent. */
|
|
void handle_used_local_channel_update(struct daemon *daemon, const u8 *msg);
|
|
|
|
#endif /* LIGHTNING_GOSSIPD_GOSSIP_GENERATION_H */
|