b81204a4720322bbfbb39a3caef304ac555a8e68
[ldk-c-bindings] / lightning-c-bindings / src / ln / mod.rs
1 //! High level lightning structs and impls live here.
2 //!
3 //! You probably want to create a channelmanager::ChannelManager, and a routing::NetGraphMsgHandler first.
4 //! Then, you probably want to pass them both on to a peer_handler::PeerManager and use that to
5 //! create/manage connections and call get_and_clear_pending_events after each action, handling
6 //! them appropriately.
7 //!
8 //! When you want to open/close a channel or send a payment, call into your ChannelManager and when
9 //! you want to learn things about the network topology (eg get a route for sending a payment),
10 //! call into your NetGraphMsgHandler.
11
12 use std::ffi::c_void;
13 use bitcoin::hashes::Hash;
14 use crate::c_types::*;
15
16 pub mod channelmanager;
17 pub mod msgs;
18 pub mod peer_handler;
19 pub mod chan_utils;
20 pub mod features;