mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
e3debe5adb
The pay.c ones were out of date, so unify. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
41 lines
1.4 KiB
C
41 lines
1.4 KiB
C
/* All about the HTLCs/commitment transactions for a particular peer. */
|
|
#ifndef LIGHTNING_LIGHTNINGD_PEER_HTLCS_H
|
|
#define LIGHTNING_LIGHTNINGD_PEER_HTLCS_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <lightningd/derive_basepoints.h>
|
|
|
|
/* FIXME: Define serialization primitive for this? */
|
|
struct channel_info {
|
|
secp256k1_ecdsa_signature commit_sig;
|
|
struct channel_config their_config;
|
|
struct pubkey remote_fundingkey;
|
|
struct basepoints theirbase;
|
|
struct pubkey their_per_commit_point;
|
|
};
|
|
|
|
/* Get all HTLCs for a peer, to send in init message. */
|
|
void peer_htlcs(const tal_t *ctx,
|
|
const struct peer *peer,
|
|
struct added_htlc **htlcs,
|
|
enum htlc_state **htlc_states,
|
|
struct fulfilled_htlc **fulfilled_htlcs,
|
|
enum side **fulfilled_sides,
|
|
struct failed_htlc **failed_htlcs,
|
|
enum side **failed_sides);
|
|
|
|
bool peer_save_commitsig_received(struct peer *peer, u64 commitnum);
|
|
bool peer_save_commitsig_sent(struct peer *peer, u64 commitnum);
|
|
|
|
int peer_sending_commitsig(struct peer *peer, const u8 *msg);
|
|
int peer_got_commitsig(struct peer *peer, const u8 *msg);
|
|
int peer_got_revoke(struct peer *peer, const u8 *msg);
|
|
|
|
enum onion_type send_htlc_out(struct peer *out, u64 amount, u32 cltv,
|
|
const struct sha256 *payment_hash,
|
|
const u8 *onion_routing_packet,
|
|
struct htlc_in *in,
|
|
struct pay_command *pc,
|
|
struct htlc_out **houtp);
|
|
#endif /* LIGHTNING_LIGHTNINGD_PEER_HTLCS_H */
|