mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
531c82b6ad
And initialize filter (to "never") when we negotiated LOCAL_GOSSIP_QUERIES, and send initial filter message. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
67 lines
1.6 KiB
C
67 lines
1.6 KiB
C
#include <ccan/mem/mem.h>
|
|
#include <gossipd/broadcast.h>
|
|
|
|
struct queued_message {
|
|
/* Broadcast index. */
|
|
u64 index;
|
|
|
|
/* Timestamp, for filtering. */
|
|
u32 timestamp;
|
|
|
|
/* Serialized payload */
|
|
const u8 *payload;
|
|
};
|
|
|
|
struct broadcast_state *new_broadcast_state(tal_t *ctx)
|
|
{
|
|
struct broadcast_state *bstate = tal(ctx, struct broadcast_state);
|
|
uintmap_init(&bstate->broadcasts);
|
|
/* Skip 0 because we initialize peers with 0 */
|
|
bstate->next_index = 1;
|
|
return bstate;
|
|
}
|
|
|
|
static void destroy_queued_message(struct queued_message *msg,
|
|
struct broadcast_state *bstate)
|
|
{
|
|
uintmap_del(&bstate->broadcasts, msg->index);
|
|
}
|
|
|
|
static struct queued_message *new_queued_message(const tal_t *ctx,
|
|
struct broadcast_state *bstate,
|
|
const u8 *payload,
|
|
u32 timestamp,
|
|
u64 index)
|
|
{
|
|
struct queued_message *msg = tal(ctx, struct queued_message);
|
|
assert(payload);
|
|
msg->payload = payload;
|
|
msg->index = index;
|
|
msg->timestamp = timestamp;
|
|
uintmap_add(&bstate->broadcasts, index, msg);
|
|
tal_add_destructor2(msg, destroy_queued_message, bstate);
|
|
return msg;
|
|
}
|
|
|
|
void insert_broadcast(struct broadcast_state *bstate,
|
|
const u8 *payload, u32 timestamp)
|
|
{
|
|
/* Free payload, free index. */
|
|
new_queued_message(payload, bstate, payload, timestamp,
|
|
bstate->next_index++);
|
|
}
|
|
|
|
const u8 *next_broadcast(struct broadcast_state *bstate,
|
|
u32 timestamp_min, u32 timestamp_max,
|
|
u64 *last_index)
|
|
{
|
|
struct queued_message *m;
|
|
|
|
while ((m = uintmap_after(&bstate->broadcasts, last_index)) != NULL) {
|
|
if (m->timestamp >= timestamp_min
|
|
&& m->timestamp <= timestamp_max)
|
|
return m->payload;
|
|
}
|
|
return NULL;
|
|
}
|