forked from ElementsProject/lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon_wiregen.c
103 lines (82 loc) · 2.53 KB
/
common_wiregen.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* 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 <wire/common_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
const char *common_wire_name(int e)
{
static char invalidbuf[sizeof("INVALID ") + STR_MAX_CHARS(e)];
switch ((enum common_wire)e) {
case WIRE_CUSTOMMSG_IN: return "WIRE_CUSTOMMSG_IN";
case WIRE_CUSTOMMSG_OUT: return "WIRE_CUSTOMMSG_OUT";
}
snprintf(invalidbuf, sizeof(invalidbuf), "INVALID %i", e);
return invalidbuf;
}
bool common_wire_is_defined(u16 type)
{
switch ((enum common_wire)type) {
case WIRE_CUSTOMMSG_IN:;
case WIRE_CUSTOMMSG_OUT:;
return true;
}
return false;
}
/* WIRE: CUSTOMMSG_IN */
/* A custom message that we got from a peer and don't know how to handle */
/* forward it to the master for further handling. */
u8 *towire_custommsg_in(const tal_t *ctx, const u8 *msg)
{
u16 msg_len = tal_count(msg);
u8 *p = tal_arr(ctx, u8, 0);
towire_u16(&p, WIRE_CUSTOMMSG_IN);
towire_u16(&p, msg_len);
towire_u8_array(&p, msg, msg_len);
return memcheck(p, tal_count(p));
}
bool fromwire_custommsg_in(const tal_t *ctx, const void *p, u8 **msg)
{
u16 msg_len;
const u8 *cursor = p;
size_t plen = tal_count(p);
if (fromwire_u16(&cursor, &plen) != WIRE_CUSTOMMSG_IN)
return false;
msg_len = fromwire_u16(&cursor, &plen);
// 2nd case msg
*msg = msg_len ? tal_arr(ctx, u8, msg_len) : NULL;
fromwire_u8_array(&cursor, &plen, *msg, msg_len);
return cursor != NULL;
}
/* WIRE: CUSTOMMSG_OUT */
/* A custom message that the master tells us to send to the peer. */
u8 *towire_custommsg_out(const tal_t *ctx, const u8 *msg)
{
u16 msg_len = tal_count(msg);
u8 *p = tal_arr(ctx, u8, 0);
towire_u16(&p, WIRE_CUSTOMMSG_OUT);
towire_u16(&p, msg_len);
towire_u8_array(&p, msg, msg_len);
return memcheck(p, tal_count(p));
}
bool fromwire_custommsg_out(const tal_t *ctx, const void *p, u8 **msg)
{
u16 msg_len;
const u8 *cursor = p;
size_t plen = tal_count(p);
if (fromwire_u16(&cursor, &plen) != WIRE_CUSTOMMSG_OUT)
return false;
msg_len = fromwire_u16(&cursor, &plen);
// 2nd case msg
*msg = msg_len ? tal_arr(ctx, u8, msg_len) : NULL;
fromwire_u8_array(&cursor, &plen, *msg, msg_len);
return cursor != NULL;
}
// SHA256STAMP:4498506058a2fd50f9b5adca97e08dce48d1812157ee24829b962eff59e3afa6