mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
4a78d17748
This basically means moving the code from gossipd to connectd to handle these queries. This will get connectd have finer control over ratelimiting them. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
#ifndef LIGHTNING_GOSSIPD_QUERIES_H
|
|
#define LIGHTNING_GOSSIPD_QUERIES_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
struct channel_update_timestamps;
|
|
struct daemon;
|
|
struct io_conn;
|
|
struct peer;
|
|
struct range_query_reply;
|
|
struct short_channel_id;
|
|
|
|
/* Various handlers when peer fwds a gossip query reply msg: return is NULL or
|
|
* error packet. */
|
|
const u8 *handle_reply_short_channel_ids_end(struct peer *peer, const u8 *msg);
|
|
const u8 *handle_reply_channel_range(struct peer *peer, const u8 *msg);
|
|
|
|
/* Ask this peer for a range of scids. Must support it, and not already
|
|
* have a query pending. */
|
|
bool query_channel_range(struct daemon *daemon,
|
|
struct peer *peer,
|
|
u32 first_blocknum, u32 number_of_blocks,
|
|
enum query_option_flags qflags,
|
|
void (*cb)(struct peer *peer_,
|
|
u32 first_blocknum_,
|
|
u32 number_of_blocks_,
|
|
const struct range_query_reply *replies_));
|
|
|
|
/* Ask this peer for info about an array of scids, with optional query_flags */
|
|
bool query_short_channel_ids(struct daemon *daemon,
|
|
struct peer *peer,
|
|
const struct short_channel_id *scids,
|
|
const u8 *query_flags,
|
|
void (*cb)(struct peer *peer_, bool complete));
|
|
|
|
#endif /* LIGHTNING_GOSSIPD_QUERIES_H */
|