Files
palladum-lightning/connectd/connectd_gossipd_wire.csv
Rusty Russell f6a4e79420 global: remove unnecessary includes from headers.
Each header should only include the other headers it needs to compile;
`devtools/reduce-includes.sh */*.h` does this.  The C files then need
additional includes if they don't compile.

And remove the entirely useless wire/onion_wire.h, which only serves to include wire/onion_wiregen.h.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2025-10-23 06:44:04 +10:30

739 B

1#include <common/node_id.h>
2# Communication between gossipd and connectd.
3msgtype,gossipd_new_peer,4000
4msgdata,gossipd_new_peer,id,node_id,
5# Did we negotiate OPT_GOSSIP_QUERIES?
6msgdata,gossipd_new_peer,gossip_queries_feature,bool,
7# peer is done
8msgtype,gossipd_peer_gone,4101
9msgdata,gossipd_peer_gone,id,node_id,
10# connectd tells gossipd a gossip msg it received for peer.
11msgtype,gossipd_recv_gossip,4002
12msgdata,gossipd_recv_gossip,id,node_id,
13msgdata,gossipd_recv_gossip,len,u16,
14msgdata,gossipd_recv_gossip,msg,byte,len
15# Gossipd asks connectd to send a gossip msg for peer.
16msgtype,gossipd_send_gossip,4102
17msgdata,gossipd_send_gossip,id,node_id,
18msgdata,gossipd_send_gossip,len,u16,
19msgdata,gossipd_send_gossip,msg,byte,len