forked from ElementsProject/lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkquery.c
88 lines (78 loc) · 2.58 KB
/
mkquery.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
/* Generate various query messages. */
#include "config.h"
#include <assert.h>
#include <bitcoin/address.h>
#include <bitcoin/script.h>
#include <bitcoin/short_channel_id.h>
#include <bitcoin/tx.h>
#include <ccan/crc32c/crc32c.h>
#include <ccan/err/err.h>
#include <ccan/str/hex/hex.h>
#include <common/gossip_constants.h>
#include <common/utils.h>
#include <inttypes.h>
#include <stdio.h>
#include <wire/peer_wire.h>
static void usage(void)
{
errx(1, "Usage: mkquery gossip_timestamp_filter <chain_hash> <first_timestamp> <timestamp_range> OR\n"
" mkquery query_channel_range <chain_hash> <first_blocknum> <number_of_blocks> [<query_option_flags>] OR\n"
" mkquery query_short_channel_ids <chain_hash> <encoded-scids> [query-flags-encoding query-flags]");
}
int main(int argc, char *argv[])
{
struct bitcoin_blkid chainhash;
const tal_t *ctx = tal(NULL, char);
const u8 *msg;
setup_locale();
secp256k1_ctx = secp256k1_context_create(SECP256K1_CONTEXT_VERIFY |
SECP256K1_CONTEXT_SIGN);
if (argc < 3)
usage();
if (!hex_decode(argv[2], strlen(argv[2]), &chainhash, sizeof(chainhash)))
errx(1, "Parsing chainhash");
if (streq(argv[1], "gossip_timestamp_filter")) {
if (argc != 5)
usage();
msg = towire_gossip_timestamp_filter(ctx, &chainhash,
strtol(argv[3], NULL, 0),
strtol(argv[4], NULL, 0));
} else if (streq(argv[1], "query_channel_range")) {
struct tlv_query_channel_range_tlvs *tlvs;
if (argc == 5)
tlvs = NULL;
else if (argc == 6) {
tlvs = tlv_query_channel_range_tlvs_new(ctx);
tlvs->query_option = tal(tlvs, bigsize_t);
*tlvs->query_option = strtol(argv[5], NULL, 0);
} else
usage();
msg = towire_query_channel_range(ctx, &chainhash,
strtol(argv[3], NULL, 0),
strtol(argv[4], NULL, 0),
tlvs);
} else if (streq(argv[1], "query_short_channel_ids")) {
struct tlv_query_short_channel_ids_tlvs *tlvs;
u8 *encoded;
if (argc == 4)
tlvs = NULL;
else if (argc == 6) {
tlvs = tlv_query_short_channel_ids_tlvs_new(ctx);
tlvs->query_flags = tal(tlvs, struct tlv_query_short_channel_ids_tlvs_query_flags);
tlvs->query_flags->encoding_type = strtol(argv[4], NULL, 0);
tlvs->query_flags->encoded_query_flags = tal_hexdata(tlvs->query_flags,
argv[5], strlen(argv[5]));
if (!tlvs->query_flags->encoded_query_flags)
usage();
} else
usage();
encoded = tal_hexdata(ctx, argv[3], strlen(argv[3]));
if (!encoded)
usage();
msg = towire_query_short_channel_ids(ctx, &chainhash, encoded, tlvs);
} else
usage();
printf("%s\n", tal_hex(ctx, msg));
tal_free(msg);
return 0;
}