mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
0e805427dc
There's a lot of it, and it means we can't `make check-source` on these files. Also bring bolt quotes up-to-date. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
47 lines
1.7 KiB
C
Generated
47 lines
1.7 KiB
C
Generated
/* This file was generated by generate-wire.py */
|
|
/* Do not modify this file! Modify the _csv file it was generated from. */
|
|
/* Original template can be found at tools/gen/header_template */
|
|
|
|
#ifndef LIGHTNING_GOSSIPD_GOSSIP_STORE_WIREGEN_H
|
|
#define LIGHTNING_GOSSIPD_GOSSIP_STORE_WIREGEN_H
|
|
#include <ccan/tal/tal.h>
|
|
#include <wire/tlvstream.h>
|
|
#include <wire/wire.h>
|
|
#include <common/amount.h>
|
|
|
|
enum gossip_store_wire {
|
|
/* This always follows the channel_announce. */
|
|
WIRE_GOSSIP_STORE_CHANNEL_AMOUNT = 4101,
|
|
WIRE_GOSSIP_STORE_PRIVATE_UPDATE = 4102,
|
|
WIRE_GOSSIP_STORE_DELETE_CHAN = 4103,
|
|
};
|
|
|
|
const char *gossip_store_wire_name(int e);
|
|
|
|
/**
|
|
* Determine whether a given message type is defined as a message.
|
|
*
|
|
* Returns true if the message type is part of the message definitions we have
|
|
* generated parsers for, false if it is a custom message that cannot be
|
|
* handled internally.
|
|
*/
|
|
bool gossip_store_wire_is_defined(u16 type);
|
|
|
|
|
|
/* WIRE: GOSSIP_STORE_CHANNEL_AMOUNT */
|
|
/* This always follows the channel_announce. */
|
|
u8 *towire_gossip_store_channel_amount(const tal_t *ctx, struct amount_sat satoshis);
|
|
bool fromwire_gossip_store_channel_amount(const void *p, struct amount_sat *satoshis);
|
|
|
|
/* WIRE: GOSSIP_STORE_PRIVATE_UPDATE */
|
|
u8 *towire_gossip_store_private_update(const tal_t *ctx, const u8 *update);
|
|
bool fromwire_gossip_store_private_update(const tal_t *ctx, const void *p, u8 **update);
|
|
|
|
/* WIRE: GOSSIP_STORE_DELETE_CHAN */
|
|
u8 *towire_gossip_store_delete_chan(const tal_t *ctx, const struct short_channel_id *scid);
|
|
bool fromwire_gossip_store_delete_chan(const void *p, struct short_channel_id *scid);
|
|
|
|
|
|
#endif /* LIGHTNING_GOSSIPD_GOSSIP_STORE_WIREGEN_H */
|
|
// SHA256STAMP:6c656ed77dab897dd0f8a9bb0bbdc9bfc5ad61f82d7ec6800d0987f766213e73
|