X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-c-bindings%2Fsrc%2Fln%2Fmod.rs;fp=lightning-c-bindings%2Fsrc%2Fln%2Fmod.rs;h=69f17a0b5f73d3933b0bfeebd77d1049b93ac1c4;hb=96b2927a9a548509d77fba3130791ebb61dfded6;hp=0000000000000000000000000000000000000000;hpb=1af8a464b4b93863b2f8398567e4892490cc8281;p=rust-lightning diff --git a/lightning-c-bindings/src/ln/mod.rs b/lightning-c-bindings/src/ln/mod.rs new file mode 100644 index 00000000..69f17a0b --- /dev/null +++ b/lightning-c-bindings/src/ln/mod.rs @@ -0,0 +1,21 @@ +//! High level lightning structs and impls live here. +//! +//! You probably want to create a channelmanager::ChannelManager, and a routing::NetGraphMsgHandler first. +//! Then, you probably want to pass them both on to a peer_handler::PeerManager and use that to +//! create/manage connections and call get_and_clear_pending_events after each action, handling +//! them appropriately. +//! +//! When you want to open/close a channel or send a payment, call into your ChannelManager and when +//! you want to learn things about the network topology (eg get a route for sending a payment), +//! call into your NetGraphMsgHandler. + +use std::ffi::c_void; +use bitcoin::hashes::Hash; +use crate::c_types::*; + +pub mod channelmanager; +pub mod channelmonitor; +pub mod msgs; +pub mod peer_handler; +pub mod chan_utils; +pub mod features;