|
|
|
#! /usr/bin/make
|
|
|
|
|
|
|
|
GOSSIPD_HEADERS_WSRC := gossipd/gossipd_wiregen.h \
|
|
|
|
gossipd/gossipd_peerd_wiregen.h \
|
|
|
|
gossipd/gossip_store_wiregen.h \
|
|
|
|
gossipd/gossipd.h \
|
|
|
|
gossipd/gossip_store.h \
|
|
|
|
gossipd/queries.h \
|
|
|
|
gossipd/gossip_generation.h \
|
|
|
|
gossipd/routing.h \
|
|
|
|
gossipd/seeker.h
|
|
|
|
GOSSIPD_HEADERS := $(GOSSIPD_HEADERS_WSRC) gossipd/broadcast.h
|
|
|
|
|
|
|
|
GOSSIPD_SRC := $(GOSSIPD_HEADERS_WSRC:.h=.c)
|
|
|
|
GOSSIPD_OBJS := $(GOSSIPD_SRC:.c=.o)
|
|
|
|
$(GOSSIPD_OBJS): $(GOSSIPD_HEADERS)
|
|
|
|
|
|
|
|
# Make sure these depend on everything.
|
|
|
|
ALL_C_SOURCES += $(GOSSIPD_SRC)
|
|
|
|
ALL_C_HEADERS += $(GOSSIPD_HEADERS)
|
|
|
|
ALL_PROGRAMS += lightningd/lightning_gossipd
|
|
|
|
|
|
|
|
# Here's what lightningd depends on
|
|
|
|
LIGHTNINGD_CONTROL_HEADERS += gossipd/gossipd_wiregen.h
|
|
|
|
LIGHTNINGD_CONTROL_OBJS += gossipd/gossipd_wiregen.o
|
|
|
|
|
|
|
|
# Common source we use.
|
|
|
|
GOSSIPD_COMMON_OBJS := \
|
|
|
|
bitcoin/chainparams.o \
|
|
|
|
common/amount.o \
|
|
|
|
common/base32.o \
|
|
|
|
common/bech32.o \
|
|
|
|
common/bech32_util.o \
|
|
|
|
common/bigsize.o \
|
|
|
|
common/bip32.o \
|
|
|
|
common/channel_id.o \
|
|
|
|
common/crypto_state.o \
|
|
|
|
common/cryptomsg.o \
|
|
|
|
common/daemon.o \
|
|
|
|
common/daemon_conn.o \
|
|
|
|
common/decode_array.o \
|
|
|
|
common/derive_basepoints.o \
|
|
|
|
common/dev_disconnect.o \
|
|
|
|
common/features.o \
|
|
|
|
common/status_wiregen.o \
|
|
|
|
common/gossip_rcvd_filter.o \
|
|
|
|
common/key_derive.o \
|
|
|
|
common/memleak.o \
|
|
|
|
common/msg_queue.o \
|
|
|
|
common/node_id.o \
|
|
|
|
common/onionreply.o \
|
|
|
|
common/per_peer_state.o \
|
|
|
|
common/ping.o \
|
|
|
|
common/psbt_open.o \
|
|
|
|
common/pseudorand.o \
|
|
|
|
common/random_select.o \
|
|
|
|
common/setup.o \
|
|
|
|
common/status.o \
|
|
|
|
common/status_wire.o \
|
|
|
|
common/subdaemon.o \
|
|
|
|
common/timeout.o \
|
|
|
|
common/type_to_string.o \
|
|
|
|
common/utils.o \
|
|
|
|
common/utxo.o \
|
|
|
|
common/version.o \
|
|
|
|
common/wireaddr.o \
|
gossipd: rewrite to do the handshake internally.
Now the flow is much simpler from a lightningd POV:
1. If we want to connect to a peer, just send gossipd `gossipctl_reach_peer`.
2. Every new peer, gossipd hands up to lightningd, with global/local features
and the peer fd and a gossip fd using `gossip_peer_connected`
3. If lightningd doesn't want it, it just hands the peerfd and global/local
features back to gossipd using `gossipctl_handle_peer`
4. If a peer sends a non-gossip msg (eg `open_channel`) the gossipd sends
it up using `gossip_peer_nongossip`.
5. If lightningd wants to fund a channel, it simply calls `release_channel`.
Notes:
* There's no more "unique_id": we use the peer id.
* For the moment, we don't ask gossipd when we're told to list peers, so
connected peers without a channel don't appear in the JSON getpeers API.
* We add a `gossipctl_peer_addrhint` for the moment, so you can connect to
a specific ip/port, but using other sources is a TODO.
* We now (correctly) only give up on reaching a peer after we exchange init
messages, which changes the test_disconnect case.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
7 years ago
|
|
|
common/wire_error.o \
|
|
|
|
connectd/connectd_gossipd_wiregen.o \
|
|
|
|
lightningd/gossip_msg.o \
|
|
|
|
wire/onion$(EXP)_wiregen.o
|
|
|
|
|
|
|
|
lightningd/lightning_gossipd: $(GOSSIPD_OBJS) $(GOSSIPD_COMMON_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS) $(HSMD_CLIENT_OBJS)
|
|
|
|
|
|
|
|
include gossipd/test/Makefile
|