rgb-cln/channeld/channel_wire.csv

8.3 KiB

1#include <common/cryptomsg.h>
2#include <common/channel_config.h>
3#include <common/derive_basepoints.h>
4#include <common/per_peer_state.h>
5# Begin! (passes gossipd-client fd)
6msgtype,channel_init,1000
7msgdata,channel_init,chain_hash,bitcoin_blkid,
8msgdata,channel_init,funding_txid,bitcoin_txid,
9msgdata,channel_init,funding_txout,u16,
10msgdata,channel_init,funding_satoshi,amount_sat,
11msgdata,channel_init,minimum_depth,u32,
12msgdata,channel_init,our_config,channel_config,
13msgdata,channel_init,their_config,channel_config,
14# FIXME: Fix generate-wire.py to allow NUM_SIDES*u32 here.,
15msgdata,channel_init,feerate_per_kw,u32,2
16msgdata,channel_init,feerate_min,u32,
17msgdata,channel_init,feerate_max,u32,
18msgdata,channel_init,first_commit_sig,bitcoin_signature,
19msgdata,channel_init,per_peer_state,per_peer_state,
20msgdata,channel_init,remote_fundingkey,pubkey,
21msgdata,channel_init,remote_basepoints,basepoints,
22msgdata,channel_init,remote_per_commit,pubkey,
23msgdata,channel_init,old_remote_per_commit,pubkey,
24msgdata,channel_init,funder,e:side,
25msgdata,channel_init,fee_base,u32,
26msgdata,channel_init,fee_proportional,u32,
27msgdata,channel_init,local_msatoshi,amount_msat,
28msgdata,channel_init,our_basepoints,basepoints,
29msgdata,channel_init,our_funding_pubkey,pubkey,
30msgdata,channel_init,local_node_id,node_id,
31msgdata,channel_init,remote_node_id,node_id,
32msgdata,channel_init,commit_msec,u32,
33msgdata,channel_init,cltv_delta,u16,
34msgdata,channel_init,last_was_revoke,bool,
35msgdata,channel_init,num_last_sent_commit,u16,
36msgdata,channel_init,last_sent_commit,changed_htlc,num_last_sent_commit
37msgdata,channel_init,next_index_local,u64,
38msgdata,channel_init,next_index_remote,u64,
39msgdata,channel_init,revocations_received,u64,
40msgdata,channel_init,next_htlc_id,u64,
41msgdata,channel_init,num_htlcs,u16,
42msgdata,channel_init,htlcs,added_htlc,num_htlcs
43msgdata,channel_init,htlc_states,e:htlc_state,num_htlcs
44msgdata,channel_init,num_fulfilled,u16,
45msgdata,channel_init,fulfilled,fulfilled_htlc,num_fulfilled
46msgdata,channel_init,fulfilled_sides,e:side,num_fulfilled
47msgdata,channel_init,num_failed,u16,
48msgdata,channel_init,failed,failed_htlc,num_failed
49msgdata,channel_init,failed_sides,e:side,num_failed
50msgdata,channel_init,local_funding_locked,bool,
51msgdata,channel_init,remote_funding_locked,bool,
52msgdata,channel_init,funding_short_id,short_channel_id,
53msgdata,channel_init,reestablish,bool,
54msgdata,channel_init,send_shutdown,bool,
55msgdata,channel_init,remote_shutdown_received,bool,
56msgdata,channel_init,final_scriptpubkey_len,u16,
57msgdata,channel_init,final_scriptpubkey,u8,final_scriptpubkey_len
58msgdata,channel_init,flags,u8,
59msgdata,channel_init,init_peer_pkt_len,u16,
60msgdata,channel_init,init_peer_pkt,u8,init_peer_pkt_len
61msgdata,channel_init,reached_announce_depth,bool,
62msgdata,channel_init,last_remote_secret,secret,
63msgdata,channel_init,lflen,u16,
64msgdata,channel_init,localfeatures,u8,lflen
65msgdata,channel_init,upfront_shutdown_script_len,u16,
66msgdata,channel_init,upfront_shutdown_script,u8,upfront_shutdown_script_len
67msgdata,channel_init,remote_ann_node_sig,?secp256k1_ecdsa_signature,
68msgdata,channel_init,remote_ann_bitcoin_sig,?secp256k1_ecdsa_signature,
69# master->channeld funding hit new depth(funding locked if >= lock depth)
70msgtype,channel_funding_depth,1002
71msgdata,channel_funding_depth,short_channel_id,?short_channel_id,
72msgdata,channel_funding_depth,depth,u32,
73# Tell channel to offer this htlc
74msgtype,channel_offer_htlc,1004
75msgdata,channel_offer_htlc,amount_msat,amount_msat,
76msgdata,channel_offer_htlc,cltv_expiry,u32,
77msgdata,channel_offer_htlc,payment_hash,sha256,
78msgdata,channel_offer_htlc,onion_routing_packet,u8,1366
79# Reply; synchronous since IDs have to increment.
80msgtype,channel_offer_htlc_reply,1104
81msgdata,channel_offer_htlc_reply,id,u64,
82# Zero failure code means success.,
83msgdata,channel_offer_htlc_reply,failure_code,u16,
84msgdata,channel_offer_htlc_reply,failurestrlen,u16,
85msgdata,channel_offer_htlc_reply,failurestr,u8,failurestrlen
86# Main daemon found out the preimage for an HTLC
87#include <bitcoin/preimage.h>
88msgtype,channel_fulfill_htlc,1005
89msgdata,channel_fulfill_htlc,fulfilled_htlc,fulfilled_htlc,
90# Main daemon says HTLC failed
91msgtype,channel_fail_htlc,1006
92msgdata,channel_fail_htlc,failed_htlc,failed_htlc,
93# When we receive funding_locked.
94msgtype,channel_got_funding_locked,1019
95msgdata,channel_got_funding_locked,next_per_commit_point,pubkey,
96# When we send a commitment_signed message, tell master.
97msgtype,channel_sending_commitsig,1020
98msgdata,channel_sending_commitsig,commitnum,u64,
99msgdata,channel_sending_commitsig,feerate,u32,
100# SENT_ADD_COMMIT, SENT_REMOVE_ACK_COMMIT, SENT_ADD_ACK_COMMIT, SENT_REMOVE_COMMIT
101msgdata,channel_sending_commitsig,num_changed,u16,
102msgdata,channel_sending_commitsig,changed,changed_htlc,num_changed
103msgdata,channel_sending_commitsig,commit_sig,bitcoin_signature,
104msgdata,channel_sending_commitsig,num_htlc_sigs,u16,
105msgdata,channel_sending_commitsig,htlc_sigs,secp256k1_ecdsa_signature,num_htlc_sigs
106# Wait for reply, to make sure it's on disk before we send commit.
107msgtype,channel_sending_commitsig_reply,1120
108# When we have a commitment_signed message, tell master to remember.
109msgtype,channel_got_commitsig,1021
110msgdata,channel_got_commitsig,commitnum,u64,
111msgdata,channel_got_commitsig,feerate,u32,
112msgdata,channel_got_commitsig,signature,bitcoin_signature,
113msgdata,channel_got_commitsig,num_htlcs,u16,
114msgdata,channel_got_commitsig,htlc_signature,secp256k1_ecdsa_signature,num_htlcs
115# RCVD_ADD_COMMIT: we're now committed to their new offered HTLCs.
116msgdata,channel_got_commitsig,num_added,u16,
117msgdata,channel_got_commitsig,added,added_htlc,num_added
118msgdata,channel_got_commitsig,shared_secret,secret,num_added
119# RCVD_REMOVE_COMMIT: we're now no longer committed to these HTLCs.
120msgdata,channel_got_commitsig,num_fulfilled,u16,
121msgdata,channel_got_commitsig,fulfilled,fulfilled_htlc,num_fulfilled
122msgdata,channel_got_commitsig,num_failed,u16,
123msgdata,channel_got_commitsig,failed,failed_htlc,num_failed
124# RCVD_ADD_ACK_COMMIT, RCVD_REMOVE_ACK_COMMIT
125msgdata,channel_got_commitsig,num_changed,u16,
126msgdata,channel_got_commitsig,changed,changed_htlc,num_changed
127msgdata,channel_got_commitsig,tx,bitcoin_tx,
128# Wait for reply, to make sure it's on disk before we send revocation.
129msgtype,channel_got_commitsig_reply,1121
130#include <common/htlc_wire.h>
131msgtype,channel_got_revoke,1022
132msgdata,channel_got_revoke,revokenum,u64,
133msgdata,channel_got_revoke,per_commitment_secret,secret,
134msgdata,channel_got_revoke,next_per_commit_point,pubkey,
135# RCVD_ADD_ACK_REVOCATION, RCVD_REMOVE_ACK_REVOCATION, RCVD_ADD_REVOCATION, RCVD_REMOVE_REVOCATION
136msgdata,channel_got_revoke,feerate,u32,
137msgdata,channel_got_revoke,num_changed,u16,
138msgdata,channel_got_revoke,changed,changed_htlc,num_changed
139# Wait for reply, to make sure it's on disk before we continue
140# (eg. if we sent another commitment_signed, that would implicitly ack).
141msgtype,channel_got_revoke_reply,1122
142# Tell peer to shut down channel.
143msgtype,channel_send_shutdown,1023
144# Peer told us that channel is shutting down
145msgtype,channel_got_shutdown,1024
146msgdata,channel_got_shutdown,scriptpubkey_len,u16,
147msgdata,channel_got_shutdown,scriptpubkey,u8,scriptpubkey_len
148# Shutdown is complete, ready for closing negotiation. + peer_fd & gossip_fd.
149msgtype,channel_shutdown_complete,1025
150msgdata,channel_shutdown_complete,per_peer_state,per_peer_state,
151# Re-enable commit timer.
152msgtype,channel_dev_reenable_commit,1026
153msgtype,channel_dev_reenable_commit_reply,1126,
154msgtype,channel_feerates,1027
155msgdata,channel_feerates,feerate,u32,
156msgdata,channel_feerates,min_feerate,u32,
157msgdata,channel_feerates,max_feerate,u32,
158# master -> channeld: do you have a memleak?
159msgtype,channel_dev_memleak,1033
160msgtype,channel_dev_memleak_reply,1133
161msgdata,channel_dev_memleak_reply,leak,bool,
162# Peer presented proof it was from the future.
163msgtype,channel_fail_fallen_behind,1028
164msgdata,channel_fail_fallen_behind,remote_per_commitment_point,pubkey,
165# Handle a channel specific feerate base ppm configuration
166msgtype,channel_specific_feerates,1029
167msgdata,channel_specific_feerates,feerate_base,u32,
168msgdata,channel_specific_feerates,feerate_ppm,u32,
169# When we receive announcement_signatures for channel announce
170msgtype,channel_got_announcement,1017
171msgdata,channel_got_announcement,remote_ann_node_sig,secp256k1_ecdsa_signature,
172msgdata,channel_got_announcement,remote_ann_bitcoin_sig,secp256k1_ecdsa_signature,