rgb-cln/gossipd/gossip_wire.csv

10 KiB

1#include <common/cryptomsg.h>
2#include <common/wireaddr.h>
3#include <wire/gen_onion_wire.h>
4# Initialize the gossip daemon.
5gossipctl_init,3000
6gossipctl_init,,broadcast_interval,u32
7gossipctl_init,,chain_hash,struct bitcoin_blkid
8gossipctl_init,,id,struct pubkey
9gossipctl_init,,gflen,u16
10gossipctl_init,,gfeatures,gflen*u8
11gossipctl_init,,lflen,u16
12gossipctl_init,,lfeatures,lflen*u8
13gossipctl_init,,num_wireaddrs,u16
14gossipctl_init,,wireaddrs,num_wireaddrs*struct wireaddr_internal
15gossipctl_init,,listen_announce,num_wireaddrs*enum addr_listen_announce
16gossipctl_init,,rgb,3*u8
17gossipctl_init,,alias,32*u8
18gossipctl_init,,update_channel_interval,u32
19gossipctl_init,,reconnect,bool
20# This is 0 or 1.
21gossipctl_init,,num_tor_proxyaddrs,u16
22gossipctl_init,,tor_proxyaddr,num_tor_proxyaddrs*struct wireaddr
23gossipctl_init,,use_tor_proxy_always,bool
24gossipctl_init,,dev_allow_localhost,bool
25gossipctl_init,,use_dns,bool
26gossipctl_init,,tor_password,wirestring
27# Activate the gossip daemon, so others can connect.
28gossipctl_activate,3025
29# Do we listen?
30gossipctl_activate,,listen,bool
31# Gossipd->master, I am ready, here's the addresses I bound, can announce.
32gossipctl_activate_reply,3125
33gossipctl_activate_reply,,num_bindings,u16
34gossipctl_activate_reply,,bindings,num_bindings*struct wireaddr_internal
35gossipctl_activate_reply,,num_announcable,u16
36gossipctl_activate_reply,,announcable,num_announcable*struct wireaddr
37# Master -> gossipd: Optional hint for where to find peer.
38gossipctl_peer_addrhint,3014
39gossipctl_peer_addrhint,,id,struct pubkey
40gossipctl_peer_addrhint,,addr,struct wireaddr_internal
41# Master -> gossipd: connect to a peer.
42gossipctl_connect_to_peer,3001
43gossipctl_connect_to_peer,,id,struct pubkey
44# Gossipd->master: result (not a reply since it can be out-of-order, but
45# you will get one reply for every request).
46gossipctl_connect_to_peer_result,3020
47gossipctl_connect_to_peer_result,,id,struct pubkey
48# True it connected.
49gossipctl_connect_to_peer_result,,connected,bool
50# Otherwise, why we can't reach them.
51gossipctl_connect_to_peer_result,,failreason,wirestring
52# Master -> gossipd: try to always maintain connection to this peer (or not)
53gossipctl_peer_important,3010
54gossipctl_peer_important,,id,struct pubkey
55gossipctl_peer_important,,important,bool
56# Gossipd -> master: we got a peer. Two fds: peer and gossip
57gossip_peer_connected,3002
58gossip_peer_connected,,id,struct pubkey
59gossip_peer_connected,,addr,struct wireaddr_internal
60gossip_peer_connected,,crypto_state,struct crypto_state
61gossip_peer_connected,,gflen,u16
62gossip_peer_connected,,gfeatures,gflen*u8
63gossip_peer_connected,,lflen,u16
64gossip_peer_connected,,lfeatures,lflen*u8
65# Gossipd -> master: peer sent non-gossip packet. Two fds: peer and gossip
66gossip_peer_nongossip,3003
67gossip_peer_nongossip,,id,struct pubkey
68gossip_peer_nongossip,,addr,struct wireaddr_internal
69gossip_peer_nongossip,,crypto_state,struct crypto_state
70gossip_peer_nongossip,,gflen,u16
71gossip_peer_nongossip,,gfeatures,gflen*u8
72gossip_peer_nongossip,,lflen,u16
73gossip_peer_nongossip,,lfeatures,lflen*u8
74gossip_peer_nongossip,,len,u16
75gossip_peer_nongossip,,msg,len*u8
76# Master -> gossipd: release a peer (so we can open a channel)
77gossipctl_release_peer,3004
78gossipctl_release_peer,,id,struct pubkey
79# Gossipd -> master: reply to gossip_release_peer. Two fds: peer and gossip.
80gossipctl_release_peer_reply,3104
81gossipctl_release_peer_reply,,addr,struct wireaddr_internal
82gossipctl_release_peer_reply,,crypto_state,struct crypto_state
83gossipctl_release_peer_reply,,gflen,u16
84gossipctl_release_peer_reply,,gfeatures,gflen*u8
85gossipctl_release_peer_reply,,lflen,u16
86gossipctl_release_peer_reply,,lfeatures,lflen*u8
87# Gossipd -> master: reply to gossip_release_peer if we couldn't find the peer.
88gossipctl_release_peer_replyfail,3204
89# master -> gossipd: take back peer, with optional msg. (+peer fd, +gossip fd)
90gossipctl_hand_back_peer,3013
91gossipctl_hand_back_peer,,id,struct pubkey
92gossipctl_hand_back_peer,,crypto_state,struct crypto_state
93gossipctl_hand_back_peer,,len,u16
94gossipctl_hand_back_peer,,msg,len*u8
95# master -> gossipd: peer has disconnected.
96gossipctl_peer_disconnected,3015
97gossipctl_peer_disconnected,,id,struct pubkey
98# Pass JSON-RPC getnodes call through
99gossip_getnodes_request,3005
100# Can be 0 or 1 currently
101gossip_getnodes_request,,num,u16
102gossip_getnodes_request,,id,num*struct pubkey
103#include <lightningd/gossip_msg.h>
104gossip_getnodes_reply,3105
105gossip_getnodes_reply,,num_nodes,u16
106gossip_getnodes_reply,,nodes,num_nodes*struct gossip_getnodes_entry
107# Pass JSON-RPC getroute call through
108gossip_getroute_request,3006
109gossip_getroute_request,,source,struct pubkey
110gossip_getroute_request,,destination,struct pubkey
111gossip_getroute_request,,msatoshi,u64
112gossip_getroute_request,,riskfactor,u16
113gossip_getroute_request,,final_cltv,u32
114gossip_getroute_request,,fuzz,double
115gossip_getroute_request,,seed,struct siphash_seed
116gossip_getroute_reply,3106
117gossip_getroute_reply,,num_hops,u16
118gossip_getroute_reply,,hops,num_hops*struct route_hop
119gossip_getchannels_request,3007
120# In practice, 0 or 1.
121gossip_getchannels_request,,num,u16
122gossip_getchannels_request,,short_channel_id,num*struct short_channel_id
123gossip_getchannels_reply,3107
124gossip_getchannels_reply,,num_channels,u16
125gossip_getchannels_reply,,nodes,num_channels*struct gossip_getchannels_entry
126# Ping/pong test. Waits for a reply if it expects one.
127gossip_ping,3008
128gossip_ping,,id,struct pubkey
129gossip_ping,,num_pong_bytes,u16
130gossip_ping,,len,u16
131gossip_ping_reply,3108
132# False if id in gossip_ping was unknown.
133gossip_ping_reply,,sent,bool
134# 0 == no pong expected
135gossip_ping_reply,,totlen,u16
136# Test of query_short_channel_ids. Master->gossipd
137gossip_query_scids,3031
138gossip_query_scids,,id,struct pubkey
139gossip_query_scids,,num_ids,u16
140gossip_query_scids,,ids,num_ids*struct short_channel_id
141# Gossipd -> master
142gossip_scids_reply,3131
143gossip_scids_reply,,ok,bool
144gossip_scids_reply,,complete,bool
145# Test gossip timestamp filtering.
146gossip_send_timestamp_filter,3028
147gossip_send_timestamp_filter,,id,struct pubkey
148gossip_send_timestamp_filter,,first_timestamp,u32
149gossip_send_timestamp_filter,,timestamp_range,u32
150# Test of query_channel_range. Master->gossipd
151gossip_query_channel_range,3029
152gossip_query_channel_range,,id,struct pubkey
153gossip_query_channel_range,,first_blocknum,u32
154gossip_query_channel_range,,number_of_blocks,u32
155# Gossipd -> master
156gossip_query_channel_range_reply,3129
157gossip_query_channel_range_reply,,final_first_block,u32
158gossip_query_channel_range_reply,,final_num_blocks,u32
159gossip_query_channel_range_reply,,final_complete,bool
160gossip_query_channel_range_reply,,num,u16
161gossip_query_channel_range_reply,,scids,num*struct short_channel_id
162# Set artificial maximum reply_channel_range size. Master->gossipd
163gossip_dev_set_max_scids_encode_size,3030
164gossip_dev_set_max_scids_encode_size,,max,u32
165# Given a short_channel_id, return the endpoints
166gossip_resolve_channel_request,3009
167gossip_resolve_channel_request,,channel_id,struct short_channel_id
168gossip_resolve_channel_reply,3109
169gossip_resolve_channel_reply,,num_keys,u16
170gossip_resolve_channel_reply,,keys,num_keys*struct pubkey
171# The main daemon asks for peers
172gossip_getpeers_request,3011
173# 0 or 1
174gossip_getpeers_request,,num,u16
175gossip_getpeers_request,,id,num*struct pubkey
176gossip_getpeers_reply,3111
177gossip_getpeers_reply,,num,u16
178gossip_getpeers_reply,,id,num*struct pubkey
179gossip_getpeers_reply,,addr,num*struct wireaddr_internal
180gossip_getpeers_reply,,numnodes,u16
181gossip_getpeers_reply,,nodes,numnodes*struct gossip_getnodes_entry
182# Channel daemon can ask for updates for a specific channel, for sending
183# errors. Must be distinct from WIRE_CHANNEL_ANNOUNCEMENT etc. gossip msgs!
184gossip_get_update,3012
185gossip_get_update,,short_channel_id,struct short_channel_id
186# If channel isn't known, update will be empty.
187gossip_get_update_reply,3112
188gossip_get_update_reply,,len,u16
189gossip_get_update_reply,,update,len*u8
190# Gossipd can tell channeld etc about gossip to fwd.
191gossip_send_gossip,3016
192gossip_send_gossip,,len,u16
193gossip_send_gossip,,gossip,len*u8
194# Both sides have seen the funding tx being locked, but we have not
195# yet reached the announcement depth. So we add the channel locally so
196# we (and peer) can update it already.
197gossip_local_add_channel,3017
198gossip_local_add_channel,,short_channel_id,struct short_channel_id
199gossip_local_add_channel,,remote_node_id,struct pubkey
200gossip_local_channel_update,3026
201gossip_local_channel_update,,short_channel_id,struct short_channel_id
202gossip_local_channel_update,,disable,bool
203gossip_local_channel_update,,cltv_expiry_delta,u16
204gossip_local_channel_update,,htlc_minimum_msat,u64
205gossip_local_channel_update,,fee_base_msat,u32
206gossip_local_channel_update,,fee_proportional_millionths,u32
207gossip_local_channel_close,3027
208gossip_local_channel_close,,short_channel_id,struct short_channel_id
209# Gossipd->master get this tx output please.
210gossip_get_txout,3018
211gossip_get_txout,,short_channel_id,struct short_channel_id
212# master->gossipd here is the output, or empty if none.
213gossip_get_txout_reply,3118
214gossip_get_txout_reply,,short_channel_id,struct short_channel_id
215gossip_get_txout_reply,,satoshis,u64
216gossip_get_txout_reply,,len,u16
217gossip_get_txout_reply,,outscript,len*u8
218# master->gossipd a routing failure occurred
219gossip_routing_failure,3021
220gossip_routing_failure,,erring_node,struct pubkey
221gossip_routing_failure,,erring_channel,struct short_channel_id
222gossip_routing_failure,,failcode,u16
223gossip_routing_failure,,len,u16
224gossip_routing_failure,,channel_update,len*u8
225# master->gossipd temporarily mark a channel unroutable
226# (used in case of unparseable onion reply)
227gossip_mark_channel_unroutable,3022
228gossip_mark_channel_unroutable,,channel,struct short_channel_id
229# master->gossipd: Request to disconnect from a peer.
230gossipctl_peer_disconnect,3023
231gossipctl_peer_disconnect,,id,struct pubkey
232# Gossipd -> master: reply to gossip_peer_disconnect with peer id.
233gossipctl_peer_disconnect_reply,3123
234# Gossipd -> master: reply to gossip_peer_disconnect if we couldn't find the peer.
235gossipctl_peer_disconnect_replyfail,3223
236gossipctl_peer_disconnect_replyfail,,isconnected,bool
237# master -> gossipd: a potential funding outpoint was spent, please forget the eventual channel
238gossip_outpoint_spent,3024
239gossip_outpoint_spent,,short_channel_id,struct short_channel_id