mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
6dab04ebd5
Otherwise check complains that it's '#ifndef LIGHTNING_WIRE_BOLT_WIREGEN_H': wire/bolt12_wiregen.h seems to be missing the expected include guard: #ifndef LIGHTNING_WIRE_BOLT12_WIREGEN_H #define LIGHTNING_WIRE_BOLT12_WIREGEN_H ... #endif /* LIGHTNING_WIRE_BOLT12_WIREGEN_H */ make: *** [Makefile:458: check-includes] Error 1 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
62 lines
2.8 KiB
C
Generated
62 lines
2.8 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>
|
|
#include <common/node_id.h>
|
|
|
|
enum gossip_store_wire {
|
|
/* This always follows the channel_announce / private_announce */
|
|
WIRE_GOSSIP_STORE_CHANNEL_AMOUNT = 4101,
|
|
/* Mimics a channel_announce */
|
|
WIRE_GOSSIP_STORE_PRIVATE_CHANNEL = 4104,
|
|
WIRE_GOSSIP_STORE_PRIVATE_UPDATE = 4102,
|
|
WIRE_GOSSIP_STORE_DELETE_CHAN = 4103,
|
|
/* FIXME: Here for COMPAT with v0.9.0 and before only. */
|
|
WIRE_GOSSIPD_LOCAL_ADD_CHANNEL_OBS = 3503,
|
|
};
|
|
|
|
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 / private_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_CHANNEL */
|
|
/* Mimics a channel_announce */
|
|
u8 *towire_gossip_store_private_channel(const tal_t *ctx, struct amount_sat satoshis, const u8 *announcement);
|
|
bool fromwire_gossip_store_private_channel(const tal_t *ctx, const void *p, struct amount_sat *satoshis, u8 **announcement);
|
|
|
|
/* 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);
|
|
|
|
/* WIRE: GOSSIPD_LOCAL_ADD_CHANNEL_OBS */
|
|
/* FIXME: Here for COMPAT with v0.9.0 and before only. */
|
|
u8 *towire_gossipd_local_add_channel_obs(const tal_t *ctx, const struct short_channel_id *short_channel_id, const struct node_id *remote_node_id, struct amount_sat satoshis, const u8 *features);
|
|
bool fromwire_gossipd_local_add_channel_obs(const tal_t *ctx, const void *p, struct short_channel_id *short_channel_id, struct node_id *remote_node_id, struct amount_sat *satoshis, u8 **features);
|
|
|
|
|
|
#endif /* LIGHTNING_GOSSIPD_GOSSIP_STORE_WIREGEN_H */
|
|
// SHA256STAMP:e57942b41cb479ca181f13cd0bf5cfc6dd4acbb3685618a9679af8ec546a3fcc
|