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.
35 lines
937 B
35 lines
937 B
#ifndef GOSSIPD_GOSSIP_STORE_H
|
|
#define GOSSIPD_GOSSIP_STORE_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <ccan/tal/tal.h>
|
|
|
|
/**
|
|
* gossip_store -- On-disk storage related information
|
|
*/
|
|
struct gossip_store;
|
|
|
|
struct gossip_store *gossip_store_new(const tal_t *ctx);
|
|
|
|
/**
|
|
* Write an incoming message to the `gossip_store`
|
|
*
|
|
* @param gs The gossip_store to write to
|
|
* @param msg The message to write
|
|
* @return The newly created and initialized `gossip_store`
|
|
*/
|
|
void gossip_store_append(struct gossip_store *gs, const u8 *msg);
|
|
|
|
/**
|
|
* Retrieve the next gossip message if any
|
|
*
|
|
* @param ctx The context to allocate the message from
|
|
* @param gs The `gossip_store` to read from
|
|
* @return The gossip message allocated from `ctx`, `NULL` if no more messages are
|
|
* available.
|
|
*/
|
|
const u8 *gossip_store_read_next(const tal_t *ctx, struct gossip_store *gs);
|
|
|
|
#endif /* GOSSIPD_GOSSIP_STORE_H */
|
|
|