mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
ef28b6112c
This change is really to allow us to have a --dev-fail-on-subdaemon-fail option so we can handle failures from subdaemons generically. It also neatens handling so we can have an explicit callback for "peer did something wrong" (which matters if we want to close the channel in that case). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
21 lines
652 B
C
21 lines
652 B
C
#ifndef LIGHTNING_COMMON_PEER_FAILED_H
|
|
#define LIGHTNING_COMMON_PEER_FAILED_H
|
|
#include "config.h"
|
|
#include <ccan/compiler/compiler.h>
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
struct channel_id;
|
|
|
|
/**
|
|
* peer_failed - Try sending error to peer, but exit with status.
|
|
* @peer_fd: file descriptor for peer.
|
|
* @cs: the peer's current crypto state.
|
|
* @channel_id: channel with error, or NULL for all.
|
|
* @fmt: format as per status_failed(STATUS_FAIL_PEER_BAD,
|
|
*/
|
|
void peer_failed(int peer_fd, struct crypto_state *cs,
|
|
const struct channel_id *channel_id,
|
|
const char *fmt, ...)
|
|
PRINTF_FMT(4,5) NORETURN;
|
|
#endif /* LIGHTNING_COMMON_PEER_FAILED_H */
|