core-lightning/wire/onion_defs.h
Rusty Russell 63f971b892 BOLTs: catchup with "Drop the required channel_update in failure onions".
Not much difference for us.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2024-10-16 07:14:32 +10:30

21 lines
644 B
C

/* Macro definitions for constants used in BOLT #4 */
#ifndef LIGHTNING_WIRE_ONION_DEFS_H
#define LIGHTNING_WIRE_ONION_DEFS_H
#include "config.h"
#include <common/sciddir_or_pubkey.h>
/* BOLT #4:
*
* The top byte of `failure_code` can be read as a set of flags:
* * 0x8000 (BADONION): unparsable onion encrypted by sending peer
* * 0x4000 (PERM): permanent failure (otherwise transient)
* * 0x2000 (NODE): node failure (otherwise channel)
* * 0x1000 (UPDATE): channel forwarding parameter was violated
*/
#define BADONION 0x8000
#define PERM 0x4000
#define NODE 0x2000
#define UPDATE 0x1000
#endif /* LIGHTNING_WIRE_ONION_DEFS_H */