mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-31 04:44:19 +01:00
First step towards `gossipd` managing the `node_announcement`. Signed-off-by: Christian Decker <decker.christian@gmail.com>
4.9 KiB
4.9 KiB
| 1 | #include <common/cryptomsg.h> |
|---|---|
| 2 | #include <common/wireaddr.h> |
| 3 | # Initialize the gossip daemon. |
| 4 | gossipctl_init,3000 |
| 5 | gossipctl_init,,broadcast_interval,u32 |
| 6 | gossipctl_init,,chain_hash,struct sha256_double |
| 7 | gossipctl_init,,id,struct pubkey |
| 8 | # If non-zero, port to listen on. |
| 9 | gossipctl_init,,port,u16 |
| 10 | gossipctl_init,,gflen,u16 |
| 11 | gossipctl_init,,gfeatures,gflen*u8 |
| 12 | gossipctl_init,,lflen,u16 |
| 13 | gossipctl_init,,lfeatures,lflen*u8 |
| 14 | gossipctl_init,,num_wireaddrs,u16 |
| 15 | gossipctl_init,,wireaddrs,num_wireaddrs*struct wireaddr |
| 16 | gossipctl_init,,rgb,3*u8 |
| 17 | gossipctl_init,,alias,32*u8 |
| 18 | # Master -> gossipd: Optional hint for where to find peer. |
| 19 | gossipctl_peer_addrhint,3014 |
| 20 | gossipctl_peer_addrhint,,id,struct pubkey |
| 21 | gossipctl_peer_addrhint,,addr,struct wireaddr |
| 22 | # Master -> gossipd: connect to a peer. We may get a peer_connected. |
| 23 | gossipctl_reach_peer,3001 |
| 24 | gossipctl_reach_peer,,id,struct pubkey |
| 25 | # Gossipd -> master: we got a peer. Two fds: peer and gossip |
| 26 | gossip_peer_connected,3002 |
| 27 | gossip_peer_connected,,id,struct pubkey |
| 28 | gossip_peer_connected,,addr,struct wireaddr |
| 29 | gossip_peer_connected,,crypto_state,struct crypto_state |
| 30 | gossip_peer_connected,,gflen,u16 |
| 31 | gossip_peer_connected,,gfeatures,gflen*u8 |
| 32 | gossip_peer_connected,,lflen,u16 |
| 33 | gossip_peer_connected,,lfeatures,lflen*u8 |
| 34 | # Gossipd -> master: peer sent non-gossip packet. Two fds: peer and gossip |
| 35 | gossip_peer_nongossip,3003 |
| 36 | gossip_peer_nongossip,,id,struct pubkey |
| 37 | gossip_peer_nongossip,,addr,struct wireaddr |
| 38 | gossip_peer_nongossip,,crypto_state,struct crypto_state |
| 39 | gossip_peer_nongossip,,gflen,u16 |
| 40 | gossip_peer_nongossip,,gfeatures,gflen*u8 |
| 41 | gossip_peer_nongossip,,lflen,u16 |
| 42 | gossip_peer_nongossip,,lfeatures,lflen*u8 |
| 43 | gossip_peer_nongossip,,len,u16 |
| 44 | gossip_peer_nongossip,,msg,len*u8 |
| 45 | # Master -> gossipd: release a peer (so we can open a channel) |
| 46 | gossipctl_release_peer,3004 |
| 47 | gossipctl_release_peer,,id,struct pubkey |
| 48 | # Gossipd -> master: reply to gossip_release_peer. Two fds: peer and gossip. |
| 49 | gossipctl_release_peer_reply,3104 |
| 50 | gossipctl_release_peer_reply,,addr,struct wireaddr |
| 51 | gossipctl_release_peer_reply,,crypto_state,struct crypto_state |
| 52 | gossipctl_release_peer_reply,,gflen,u16 |
| 53 | gossipctl_release_peer_reply,,gfeatures,gflen*u8 |
| 54 | gossipctl_release_peer_reply,,lflen,u16 |
| 55 | gossipctl_release_peer_reply,,lfeatures,lflen*u8 |
| 56 | # Gossipd -> master: reply to gossip_release_peer if we couldn't find the peer. |
| 57 | gossipctl_release_peer_replyfail,3204 |
| 58 | # Gossipd -> master: take over peer, with optional msg. (+peer fd) |
| 59 | gossipctl_handle_peer,3013 |
| 60 | gossipctl_handle_peer,,id,struct pubkey |
| 61 | gossipctl_handle_peer,,addr,struct wireaddr |
| 62 | gossipctl_handle_peer,,crypto_state,struct crypto_state |
| 63 | gossipctl_handle_peer,,gflen,u16 |
| 64 | gossipctl_handle_peer,,gfeatures,gflen*u8 |
| 65 | gossipctl_handle_peer,,lflen,u16 |
| 66 | gossipctl_handle_peer,,lfeatures,lflen*u8 |
| 67 | gossipctl_handle_peer,,len,u16 |
| 68 | gossipctl_handle_peer,,msg,len*u8 |
| 69 | # Pass JSON-RPC getnodes call through |
| 70 | gossip_getnodes_request,3005 |
| 71 | #include <lightningd/gossip_msg.h> |
| 72 | gossip_getnodes_reply,3105 |
| 73 | gossip_getnodes_reply,,num_nodes,u16 |
| 74 | gossip_getnodes_reply,,nodes,num_nodes*struct gossip_getnodes_entry |
| 75 | # Pass JSON-RPC getroute call through |
| 76 | gossip_getroute_request,3006 |
| 77 | gossip_getroute_request,,source,struct pubkey |
| 78 | gossip_getroute_request,,destination,struct pubkey |
| 79 | gossip_getroute_request,,msatoshi,u32 |
| 80 | gossip_getroute_request,,riskfactor,u16 |
| 81 | gossip_getroute_request,,final_cltv,u32 |
| 82 | gossip_getroute_reply,3106 |
| 83 | gossip_getroute_reply,,num_hops,u16 |
| 84 | gossip_getroute_reply,,hops,num_hops*struct route_hop |
| 85 | gossip_getchannels_request,3007 |
| 86 | gossip_getchannels_reply,3107 |
| 87 | gossip_getchannels_reply,,num_channels,u16 |
| 88 | gossip_getchannels_reply,,nodes,num_channels*struct gossip_getchannels_entry |
| 89 | # Ping/pong test. Waits for a reply if it expects one. |
| 90 | gossip_ping,3008 |
| 91 | gossip_ping,,id,struct pubkey |
| 92 | gossip_ping,,num_pong_bytes,u16 |
| 93 | gossip_ping,,len,u16 |
| 94 | gossip_ping_reply,3108 |
| 95 | # False if id in gossip_ping was unknown. |
| 96 | gossip_ping_reply,,sent,bool |
| 97 | # 0 == no pong expected |
| 98 | gossip_ping_reply,,totlen,u16 |
| 99 | # Given a short_channel_id, return the endpoints |
| 100 | gossip_resolve_channel_request,3009 |
| 101 | gossip_resolve_channel_request,,channel_id,struct short_channel_id |
| 102 | gossip_resolve_channel_reply,3109 |
| 103 | gossip_resolve_channel_reply,,num_keys,u16 |
| 104 | gossip_resolve_channel_reply,,keys,num_keys*struct pubkey |
| 105 | # The main daemon forward some gossip message to gossipd, allows injecting |
| 106 | # arbitrary gossip messages. |
| 107 | gossip_forwarded_msg,3010 |
| 108 | gossip_forwarded_msg,,msglen,u16 |
| 109 | gossip_forwarded_msg,,msg,msglen*u8 |
| 110 | # The main daemon asks for peers |
| 111 | gossip_getpeers_request,3011 |
| 112 | gossip_getpeers_reply,3111 |
| 113 | gossip_getpeers_reply,,num,u16 |
| 114 | gossip_getpeers_reply,,id,num*struct pubkey |
| 115 | gossip_getpeers_reply,,addr,num*struct wireaddr |
| 116 | # Channel daemon can ask for updates for a specific channel, for sending |
| 117 | # errors. Must be distinct from WIRE_CHANNEL_ANNOUNCEMENT etc. gossip msgs! |
| 118 | gossip_get_update,3012 |
| 119 | gossip_get_update,,short_channel_id,struct short_channel_id |
| 120 | # If channel isn't known, update will be empty. |
| 121 | gossip_get_update_reply,3112 |
| 122 | gossip_get_update_reply,,len,u16 |
| 123 | gossip_get_update_reply,,update,len*u8 |