mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 22:45:27 +01:00
This basically means moving the code from gossipd to connectd to handle these queries. This will get connectd have finer control over ratelimiting them. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
3.2 KiB
3.2 KiB
1 | #include <common/cryptomsg.h> |
---|---|
2 | #include <common/features.h> |
3 | #include <common/wireaddr.h> |
4 | #include <wire/peer_wire.h> |
5 | #include <wire/onion_wire.h> |
6 | # Initialize the gossip daemon. |
7 | msgtype,gossipd_init,3000 |
8 | msgdata,gossipd_init,chainparams,chainparams, |
9 | msgdata,gossipd_init,our_features,feature_set, |
10 | msgdata,gossipd_init,id,node_id, |
11 | msgdata,gossipd_init,dev_gossip_time,?u32, |
12 | msgdata,gossipd_init,dev_fast_gossip,bool, |
13 | msgdata,gossipd_init,dev_fast_gossip_prune,bool, |
14 | # Gossipd tells us all our public channel_updates before init_reply. |
15 | msgtype,gossipd_init_cupdate,3101 |
16 | msgdata,gossipd_init_cupdate,scid,short_channel_id, |
17 | msgdata,gossipd_init_cupdate,len,u16, |
18 | msgdata,gossipd_init_cupdate,cupdate,u8,len |
19 | # Gossipd tells us our node_announcement before init_reply. |
20 | msgtype,gossipd_init_nannounce,3102 |
21 | msgdata,gossipd_init_nannounce,len,u16, |
22 | msgdata,gossipd_init_nannounce,nannounce,u8,len |
23 | msgtype,gossipd_init_reply,3100 |
24 | # In developer mode, we can mess with time. |
25 | msgtype,gossipd_dev_set_time,3001 |
26 | msgdata,gossipd_dev_set_time,dev_gossip_time,u32, |
27 | # Gossipd->master get this tx output please. |
28 | msgtype,gossipd_get_txout,3018 |
29 | msgdata,gossipd_get_txout,short_channel_id,short_channel_id, |
30 | # master->gossipd here is the output, or empty if none. |
31 | msgtype,gossipd_get_txout_reply,3118 |
32 | msgdata,gossipd_get_txout_reply,short_channel_id,short_channel_id, |
33 | msgdata,gossipd_get_txout_reply,satoshis,amount_sat, |
34 | msgdata,gossipd_get_txout_reply,len,u16, |
35 | msgdata,gossipd_get_txout_reply,outscript,u8,len |
36 | # master -> gossipd: these potential funding outpoints were spent, please forget any channels |
37 | msgtype,gossipd_outpoints_spent,3024 |
38 | msgdata,gossipd_outpoints_spent,blockheight,u32, |
39 | msgdata,gossipd_outpoints_spent,len,u32, |
40 | msgdata,gossipd_outpoints_spent,short_channel_id,short_channel_id,len |
41 | # master -> gossipd: do you have a memleak? |
42 | msgtype,gossipd_dev_memleak,3033 |
43 | msgtype,gossipd_dev_memleak_reply,3133 |
44 | msgdata,gossipd_dev_memleak_reply,leak,bool, |
45 | # master -> gossipd: blockheight increased. |
46 | msgtype,gossipd_new_blockheight,3026 |
47 | msgdata,gossipd_new_blockheight,blockheight,u32, |
48 | # gossipd: got it! |
49 | msgtype,gossipd_new_blockheight_reply,3126 |
50 | # Lightningd tells us to inject a gossip message (for addgossip RPC) |
51 | msgtype,gossipd_addgossip,3044 |
52 | msgdata,gossipd_addgossip,len,u16, |
53 | msgdata,gossipd_addgossip,msg,u8,len |
54 | msgdata,gossipd_addgossip,known_channel,?amount_sat, |
55 | # Empty string means no problem. |
56 | msgtype,gossipd_addgossip_reply,3144 |
57 | msgdata,gossipd_addgossip_reply,err,wirestring, |
58 | # Lightningd asks gossipd for any known addresses for that node. |
59 | msgtype,gossipd_get_addrs,3050 |
60 | msgdata,gossipd_get_addrs,id,node_id, |
61 | msgtype,gossipd_get_addrs_reply,3150 |
62 | msgdata,gossipd_get_addrs_reply,num,u16, |
63 | msgdata,gossipd_get_addrs_reply,addrs,wireaddr,num |
64 | subtype,peer_update |
65 | subtypedata,peer_update,scid,short_channel_id, |
66 | subtypedata,peer_update,fee_base,u32, |
67 | subtypedata,peer_update,fee_ppm,u32, |
68 | subtypedata,peer_update,cltv_delta,u16, |
69 | subtypedata,peer_update,htlc_minimum_msat,amount_msat, |
70 | subtypedata,peer_update,htlc_maximum_msat,amount_msat, |
71 | # Tell lightningd we received channel update info for a local channel |
72 | msgtype,gossipd_remote_channel_update,3010 |
73 | msgdata,gossipd_remote_channel_update,source_node,?node_id, |
74 | msgdata,gossipd_remote_channel_update,peer_update,peer_update, |