2020-08-31 03:22:37 +02:00
|
|
|
/* 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/impl_template */
|
|
|
|
|
|
|
|
#include <gossipd/gossip_store_wiregen.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ccan/array_size/array_size.h>
|
|
|
|
#include <ccan/mem/mem.h>
|
|
|
|
#include <ccan/tal/str/str.h>
|
|
|
|
#include <common/utils.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#ifndef SUPERVERBOSE
|
|
|
|
#define SUPERVERBOSE(...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* gossip_store messages: messages persisted in the gossip_store */
|
|
|
|
/* We store raw messages here */
|
|
|
|
/* 256/257/258 or gossipd_local_add_channel (3503) */
|
|
|
|
|
|
|
|
const char *gossip_store_wire_name(int e)
|
|
|
|
{
|
|
|
|
static char invalidbuf[sizeof("INVALID ") + STR_MAX_CHARS(e)];
|
|
|
|
|
|
|
|
switch ((enum gossip_store_wire)e) {
|
|
|
|
case WIRE_GOSSIP_STORE_CHANNEL_AMOUNT: return "WIRE_GOSSIP_STORE_CHANNEL_AMOUNT";
|
|
|
|
case WIRE_GOSSIP_STORE_PRIVATE_UPDATE: return "WIRE_GOSSIP_STORE_PRIVATE_UPDATE";
|
|
|
|
case WIRE_GOSSIP_STORE_DELETE_CHAN: return "WIRE_GOSSIP_STORE_DELETE_CHAN";
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(invalidbuf, sizeof(invalidbuf), "INVALID %i", e);
|
|
|
|
return invalidbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool gossip_store_wire_is_defined(u16 type)
|
|
|
|
{
|
|
|
|
switch ((enum gossip_store_wire)type) {
|
|
|
|
case WIRE_GOSSIP_STORE_CHANNEL_AMOUNT:;
|
|
|
|
case WIRE_GOSSIP_STORE_PRIVATE_UPDATE:;
|
|
|
|
case WIRE_GOSSIP_STORE_DELETE_CHAN:;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 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)
|
|
|
|
{
|
|
|
|
u8 *p = tal_arr(ctx, u8, 0);
|
|
|
|
|
|
|
|
towire_u16(&p, WIRE_GOSSIP_STORE_CHANNEL_AMOUNT);
|
|
|
|
towire_amount_sat(&p, satoshis);
|
|
|
|
|
|
|
|
return memcheck(p, tal_count(p));
|
|
|
|
}
|
|
|
|
bool fromwire_gossip_store_channel_amount(const void *p, struct amount_sat *satoshis)
|
|
|
|
{
|
|
|
|
const u8 *cursor = p;
|
|
|
|
size_t plen = tal_count(p);
|
|
|
|
|
|
|
|
if (fromwire_u16(&cursor, &plen) != WIRE_GOSSIP_STORE_CHANNEL_AMOUNT)
|
|
|
|
return false;
|
|
|
|
*satoshis = fromwire_amount_sat(&cursor, &plen);
|
|
|
|
return cursor != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* WIRE: GOSSIP_STORE_PRIVATE_UPDATE */
|
|
|
|
u8 *towire_gossip_store_private_update(const tal_t *ctx, const u8 *update)
|
|
|
|
{
|
|
|
|
u16 len = tal_count(update);
|
|
|
|
u8 *p = tal_arr(ctx, u8, 0);
|
|
|
|
|
|
|
|
towire_u16(&p, WIRE_GOSSIP_STORE_PRIVATE_UPDATE);
|
|
|
|
towire_u16(&p, len);
|
|
|
|
towire_u8_array(&p, update, len);
|
|
|
|
|
|
|
|
return memcheck(p, tal_count(p));
|
|
|
|
}
|
|
|
|
bool fromwire_gossip_store_private_update(const tal_t *ctx, const void *p, u8 **update)
|
|
|
|
{
|
|
|
|
u16 len;
|
|
|
|
|
|
|
|
const u8 *cursor = p;
|
|
|
|
size_t plen = tal_count(p);
|
|
|
|
|
|
|
|
if (fromwire_u16(&cursor, &plen) != WIRE_GOSSIP_STORE_PRIVATE_UPDATE)
|
|
|
|
return false;
|
|
|
|
len = fromwire_u16(&cursor, &plen);
|
|
|
|
// 2nd case update
|
|
|
|
*update = len ? tal_arr(ctx, u8, len) : NULL;
|
|
|
|
fromwire_u8_array(&cursor, &plen, *update, len);
|
|
|
|
return cursor != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* WIRE: GOSSIP_STORE_DELETE_CHAN */
|
|
|
|
u8 *towire_gossip_store_delete_chan(const tal_t *ctx, const struct short_channel_id *scid)
|
|
|
|
{
|
|
|
|
u8 *p = tal_arr(ctx, u8, 0);
|
|
|
|
|
|
|
|
towire_u16(&p, WIRE_GOSSIP_STORE_DELETE_CHAN);
|
|
|
|
towire_short_channel_id(&p, scid);
|
|
|
|
|
|
|
|
return memcheck(p, tal_count(p));
|
|
|
|
}
|
|
|
|
bool fromwire_gossip_store_delete_chan(const void *p, struct short_channel_id *scid)
|
|
|
|
{
|
|
|
|
const u8 *cursor = p;
|
|
|
|
size_t plen = tal_count(p);
|
|
|
|
|
|
|
|
if (fromwire_u16(&cursor, &plen) != WIRE_GOSSIP_STORE_DELETE_CHAN)
|
|
|
|
return false;
|
|
|
|
fromwire_short_channel_id(&cursor, &plen, scid);
|
|
|
|
return cursor != NULL;
|
|
|
|
}
|
2020-09-09 07:48:21 +02:00
|
|
|
// SHA256STAMP:6c656ed77dab897dd0f8a9bb0bbdc9bfc5ad61f82d7ec6800d0987f766213e73
|