mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 06:55:13 +01:00
Ideally we'd rename status_failed() to status_fatal(), but that's too much churn for now. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
30 lines
728 B
CSV
30 lines
728 B
CSV
#include <common/status_wire.h>
|
|
|
|
status_log,0xFFF0
|
|
status_log,,level,enum log_level
|
|
status_log,,entry,wirestring
|
|
|
|
status_io,0xFFF1
|
|
status_io,,iodir,enum log_level
|
|
status_io,,len,u16
|
|
status_io,,data,len*u8
|
|
|
|
status_fail,0xFFF2
|
|
status_fail,,failreason,enum status_failreason
|
|
status_fail,,desc,wirestring
|
|
|
|
status_peer_connection_lost,0xFFF3
|
|
|
|
# They sent us this error.
|
|
status_received_errmsg,0xFFF4
|
|
status_received_errmsg,,channel,struct channel_id
|
|
status_received_errmsg,,desc,wirestring
|
|
|
|
# We sent them this error.
|
|
status_sent_errmsg,0xFFF5
|
|
status_sent_errmsg,,channel,struct channel_id
|
|
status_sent_errmsg,,desc,wirestring
|
|
status_sent_errmsg,,len,u16
|
|
status_sent_errmsg,,errmsg,len*u8
|
|
|
|
# Note: 0xFFFF is reserved for MSG_PASS_FD!
|