2017-04-01 20:55:59 +10:30
|
|
|
#ifndef LIGHTNING_WIRE_PEER_WIRE_H
|
|
|
|
#define LIGHTNING_WIRE_PEER_WIRE_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdbool.h>
|
2020-09-08 06:36:50 +09:30
|
|
|
|
|
|
|
#if EXPERIMENTAL_FEATURES
|
|
|
|
#include <wire/peer_exp_wiregen.h>
|
|
|
|
#else
|
2020-08-31 10:43:25 +09:30
|
|
|
#include <wire/peer_wiregen.h>
|
2020-09-08 06:36:50 +09:30
|
|
|
#endif
|
2017-04-01 20:55:59 +10:30
|
|
|
|
|
|
|
/* BOLT #1:
|
|
|
|
*
|
2018-06-17 19:43:44 +09:30
|
|
|
* A receiving node:
|
|
|
|
* - upon receiving a message of _odd_, unknown type:
|
|
|
|
* - MUST ignore the received message.
|
|
|
|
* - upon receiving a message of _even_, unknown type:
|
2020-06-22 14:36:03 +09:30
|
|
|
* - MUST close the connection.
|
|
|
|
* - MAY fail the channels.
|
2017-04-01 20:55:59 +10:30
|
|
|
*/
|
|
|
|
|
|
|
|
/* Return true if it's an unknown ODD message. cursor is a tal ptr. */
|
2017-06-27 12:20:10 +09:30
|
|
|
bool is_unknown_msg_discardable(const u8 *cursor);
|
2018-03-08 13:47:05 +10:30
|
|
|
/* Return true if it's a message for gossipd. */
|
|
|
|
bool is_msg_for_gossipd(const u8 *cursor);
|
2017-04-01 20:55:59 +10:30
|
|
|
|
2018-01-10 15:17:22 +10:30
|
|
|
/* Extract channel_id from various packets, return true if possible. */
|
|
|
|
bool extract_channel_id(const u8 *in_pkt, struct channel_id *channel_id);
|
|
|
|
|
2017-06-27 12:25:01 +09:30
|
|
|
/* BOLT #2:
|
|
|
|
*
|
|
|
|
* Only the least-significant bit of `channel_flags` is currently
|
|
|
|
* defined: `announce_channel`. This indicates whether the initiator
|
|
|
|
* of the funding flow wishes to advertise this channel publicly to
|
2018-06-17 19:43:44 +09:30
|
|
|
* the network, as detailed within [BOLT #7]
|
2017-06-27 12:25:01 +09:30
|
|
|
*/
|
2017-08-08 14:18:30 +02:00
|
|
|
#define CHANNEL_FLAGS_ANNOUNCE_CHANNEL 1
|
2017-04-01 20:55:59 +10:30
|
|
|
#endif /* LIGHTNING_WIRE_PEER_WIRE_H */
|