mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-24 01:24:26 +01:00
lightningd/peer_failed: helper to send PKT_ERR and exit daemon.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
21
lightningd/peer_failed.h
Normal file
21
lightningd/peer_failed.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef LIGHTNING_LIGHTNINGD_PEER_FAILED_H
|
||||
#define LIGHTNING_LIGHTNINGD_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.
|
||||
* @error_code: error code as per status_failed
|
||||
* @fmt: format as per status_failed
|
||||
*/
|
||||
void peer_failed(int peer_fd, struct crypto_state *cs,
|
||||
const struct channel_id *channel_id,
|
||||
u16 error_code, const char *fmt, ...)
|
||||
PRINTF_FMT(5,6) NORETURN;
|
||||
#endif /* LIGHTNING_STATUS_H */
|
||||
Reference in New Issue
Block a user