mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-28 02:04:21 +01:00
We use this if it reconnects via another fd. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
3.4 KiB
3.4 KiB
| 1 | # These are fatal. |
|---|---|
| 2 | gossipstatus_init_failed,0x8000 |
| 3 | gossipstatus_bad_new_peer_request,0x8001 |
| 4 | gossipstatus_bad_release_request,0x8002 |
| 5 | gossipstatus_bad_fail_request,0x8003 |
| 6 | gossipstatus_bad_request,0x8004 |
| 7 | gossipstatus_fdpass_failed,0x8005 |
| 8 | # Peers can give a bad message, we close their fd, but no harm done. |
| 9 | gossipstatus_peer_bad_msg,1000 |
| 10 | gossipstatus_peer_bad_msg,0,unique_id,8 |
| 11 | gossipstatus_peer_bad_msg,8,len,2 |
| 12 | gossipstatus_peer_bad_msg,10,err,len*u8 |
| 13 | # Misc problems like opening control fd. |
| 14 | gossipstatus_peer_failed,1001 |
| 15 | gossipstatus_peer_failed,0,unique_id,8 |
| 16 | gossipstatus_peer_failed,8,len,2 |
| 17 | gossipstatus_peer_failed,10,err,len*u8 |
| 18 | #include <lightningd/cryptomsg.h> |
| 19 | # Initialize the gossip daemon |
| 20 | gossipctl_init,0 |
| 21 | gossipctl_init,0,broadcast_interval,4 |
| 22 | # These take an fd, but have no response |
| 23 | # (if it is to move onto a channel, we get a status msg). |
| 24 | gossipctl_new_peer,1 |
| 25 | gossipctl_new_peer,0,unique_id,8 |
| 26 | gossipctl_new_peer,8,crypto_state,struct crypto_state |
| 27 | # Tell it to release a peer which has initialized. |
| 28 | gossipctl_release_peer,2 |
| 29 | gossipctl_release_peer,0,unique_id,8 |
| 30 | # This releases the peer and returns the cryptostate (followed two fds: peer and gossip) |
| 31 | gossipctl_release_peer_reply,102 |
| 32 | gossipctl_release_peer_reply,0,unique_id,8 |
| 33 | gossipctl_release_peer_reply,8,crypto_state,struct crypto_state |
| 34 | # This is where we save a peer's features. |
| 35 | #gossipstatus_peer_features,1 |
| 36 | #gossipstatus_peer_features,0,unique_id,8 |
| 37 | #gossipstatus_peer_features,8,gflen,2 |
| 38 | #gossipstatus_peer_features,10,globalfeatures,gflen |
| 39 | #gossipstatus_peer_features,10+gflen,lflen,2 |
| 40 | #gossipstatus_peer_features,12+gflen,localfeatures,lflen |
| 41 | # Peer can send non-gossip packet (usually an open_channel) (followed two fds: peer and gossip) |
| 42 | gossipstatus_peer_nongossip,4 |
| 43 | gossipstatus_peer_nongossip,0,unique_id,8 |
| 44 | gossipstatus_peer_nongossip,10,crypto_state,struct crypto_state |
| 45 | gossipstatus_peer_nongossip,154,len,2 |
| 46 | gossipstatus_peer_nongossip,156,msg,len*u8 |
| 47 | # Pass JSON-RPC getnodes call through |
| 48 | gossip_getnodes_request,5 |
| 49 | #include <lightningd/gossip_msg.h> |
| 50 | gossip_getnodes_reply,105 |
| 51 | gossip_getnodes_reply,0,num_nodes,u16 |
| 52 | gossip_getnodes_reply,2,nodes,num_nodes*struct gossip_getnodes_entry |
| 53 | # Pass JSON-RPC getroute call through |
| 54 | gossip_getroute_request,6 |
| 55 | gossip_getroute_request,0,source,struct pubkey |
| 56 | gossip_getroute_request,33,destination,struct pubkey |
| 57 | gossip_getroute_request,66,msatoshi,u32 |
| 58 | gossip_getroute_request,70,riskfactor,u16 |
| 59 | gossip_getroute_reply,106 |
| 60 | gossip_getroute_reply,0,num_hops,u16 |
| 61 | gossip_getroute_reply,2,hops,num_hops*struct route_hop |
| 62 | gossip_getchannels_request,7 |
| 63 | gossip_getchannels_reply,107 |
| 64 | gossip_getchannels_reply,0,num_channels,u16 |
| 65 | gossip_getchannels_reply,2,nodes,num_channels*struct gossip_getchannels_entry |
| 66 | # Ping/pong test. |
| 67 | gossip_ping,8 |
| 68 | gossip_ping,0,unique_id,u64 |
| 69 | gossip_ping,0,num_pong_bytes,u16 |
| 70 | gossip_ping,0,len,u16 |
| 71 | gossip_ping_reply,108 |
| 72 | gossip_ping_reply,0,totlen,u16 |
| 73 | # Given a short_channel_id, return the endpoints |
| 74 | gossip_resolve_channel_request,9 |
| 75 | gossip_resolve_channel_request,0,channel_id,struct short_channel_id |
| 76 | gossip_resolve_channel_reply,109 |
| 77 | gossip_resolve_channel_reply,0,num_keys,u16 |
| 78 | gossip_resolve_channel_reply,0,keys,num_keys*struct pubkey |
| 79 | # The main daemon forward some gossip message to gossipd, allows injecting |
| 80 | # arbitrary gossip messages. |
| 81 | gossip_forwarded_msg,10 |
| 82 | gossip_forwarded_msg,0,msglen,2 |
| 83 | gossip_forwarded_msg,2,msg,msglen |
| 84 | # If peer is still connected, fail it (master does this for reconnect) |
| 85 | gossipctl_fail_peer,11 |
| 86 | gossipctl_fail_peer,0,unique_id,8 |