2017-08-28 18:06:01 +02:00
|
|
|
#ifndef LIGHTNING_COMMON_PEER_FAILED_H
|
|
|
|
#define LIGHTNING_COMMON_PEER_FAILED_H
|
2017-02-24 06:52:55 +01:00
|
|
|
#include "config.h"
|
|
|
|
#include <ccan/compiler/compiler.h>
|
|
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
|
|
|
|
struct channel_id;
|
|
|
|
|
|
|
|
/**
|
2018-02-19 02:06:14 +01:00
|
|
|
* peer_failed - Exit with error for peer.
|
2017-02-24 06:52:55 +01:00
|
|
|
* @cs: the peer's current crypto state.
|
2018-02-19 02:06:14 +01:00
|
|
|
* @gossip_index: the peer's current gossip_index.
|
2017-02-24 06:52:55 +01:00
|
|
|
* @channel_id: channel with error, or NULL for all.
|
2018-02-19 02:06:14 +01:00
|
|
|
* @fmt...: format as per status_failed(STATUS_FAIL_PEER_BAD)
|
2017-02-24 06:52:55 +01:00
|
|
|
*/
|
2018-02-19 02:06:14 +01:00
|
|
|
#define peer_failed(cs, gossip_index, channel_id, ...) \
|
|
|
|
peer_failed_(PEER_FD, GOSSIP_FD, (cs), (gossip_index), (channel_id), \
|
|
|
|
__VA_ARGS__)
|
|
|
|
|
|
|
|
void peer_failed_(int peer_fd, int gossip_fd,
|
|
|
|
struct crypto_state *cs, u64 gossip_index,
|
|
|
|
const struct channel_id *channel_id,
|
|
|
|
const char *fmt, ...)
|
|
|
|
PRINTF_FMT(6,7) NORETURN;
|
2018-02-19 02:06:15 +01:00
|
|
|
|
|
|
|
/* We're failing because peer sent us an error message */
|
|
|
|
void peer_failed_received_errmsg(int peer_fd, int gossip_fd,
|
|
|
|
struct crypto_state *cs, u64 gossip_index,
|
|
|
|
const char *desc,
|
|
|
|
const struct channel_id *channel_id) NORETURN;
|
|
|
|
|
|
|
|
/* I/O error */
|
|
|
|
void peer_failed_connection_lost(void) NORETURN;
|
|
|
|
|
2017-08-28 18:06:01 +02:00
|
|
|
#endif /* LIGHTNING_COMMON_PEER_FAILED_H */
|