mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
36652a3df3
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
19 lines
626 B
C
19 lines
626 B
C
#ifndef LIGHTNING_LIGHTNINGD_CONNECT_CONTROL_H
|
|
#define LIGHTNING_LIGHTNINGD_CONNECT_CONTROL_H
|
|
#include "config.h"
|
|
|
|
struct lightningd;
|
|
struct pubkey;
|
|
|
|
void connect_succeeded(struct lightningd *ld, const struct pubkey *id);
|
|
void connect_failed(struct lightningd *ld, const struct pubkey *id,
|
|
const char *error);
|
|
|
|
/* Gossipd was unable to connect to the peer */
|
|
void peer_connection_failed(struct lightningd *ld, const u8 *msg);
|
|
|
|
/* This simply means we asked to reach a peer, but we already have it */
|
|
void peer_already_connected(struct lightningd *ld, const u8 *msg);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_CONNECT_CONTROL_H */
|