mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
d9f13230cf
All gossipd needs from common/tor is do_we_use_tor_addr(), so move that and the rest of the tor-specific handshake code into gossip/tor.c Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
11 lines
244 B
C
11 lines
244 B
C
#ifndef LIGHTNING_GOSSIPD_GOSSIP_H
|
|
#define LIGHTNING_GOSSIPD_GOSSIP_H
|
|
#include "config.h"
|
|
|
|
struct io_conn;
|
|
struct reaching;
|
|
|
|
struct io_plan *connection_out(struct io_conn *conn, struct reaching *reach);
|
|
|
|
#endif /* LIGHTNING_GOSSIPD_GOSSIP_H */
|