You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
776 B
29 lines
776 B
#ifndef LIGHTNING_GOSSIPD_SEEKER_H
|
|
#define LIGHTNING_GOSSIPD_SEEKER_H
|
|
#include "config.h"
|
|
|
|
struct daemon;
|
|
struct peer;
|
|
struct short_channel_id;
|
|
|
|
struct seeker *new_seeker(struct daemon *daemon);
|
|
|
|
void query_unknown_channel(struct daemon *daemon,
|
|
struct peer *peer,
|
|
const struct short_channel_id *id);
|
|
|
|
void query_unknown_node(struct seeker *seeker, struct peer *peer);
|
|
|
|
void seeker_setup_peer_gossip(struct seeker *seeker, struct peer *peer);
|
|
|
|
bool remove_unknown_scid(struct seeker *seeker,
|
|
const struct short_channel_id *scid,
|
|
bool found);
|
|
bool add_unknown_scid(struct seeker *seeker,
|
|
const struct short_channel_id *scid,
|
|
struct peer *peer);
|
|
|
|
/* A testing hack */
|
|
extern bool dev_suppress_gossip;
|
|
|
|
#endif /* LIGHTNING_GOSSIPD_SEEKER_H */
|
|
|