mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
13 lines
501 B
C
13 lines
501 B
C
|
#ifndef LIGHTNING_CONNECTD_QUERIES_H
|
||
|
#define LIGHTNING_CONNECTD_QUERIES_H
|
||
|
#include "config.h"
|
||
|
|
||
|
/* See if there's a query to respond to, if so, do it and return true */
|
||
|
bool maybe_send_query_responses(struct peer *peer, struct gossmap *gossmap);
|
||
|
|
||
|
void handle_query_short_channel_ids(struct peer *peer, const u8 *msg);
|
||
|
void handle_query_channel_range(struct peer *peer, const u8 *msg);
|
||
|
|
||
|
void dev_set_max_scids_encode_size(struct daemon *daemon, const u8 *msg);
|
||
|
#endif /* LIGHTNING_CONNECTD_QUERIES_H */
|