62b675e076969162474168a514915172da21496f
[ldk-c-bindings] / lightning-c-bindings / src / lightning / ln / channelmanager.rs
1 // This file is Copyright its original authors, visible in version control
2 // history and in the source files from which this was generated.
3 //
4 // This file is licensed under the license available in the LICENSE or LICENSE.md
5 // file in the root of this repository or, if no such file exists, the same
6 // license as that which applies to the original source files from which this
7 // source was automatically generated.
8
9 //! The top-level channel management and payment tracking stuff lives here.
10 //!
11 //! The ChannelManager is the main chunk of logic implementing the lightning protocol and is
12 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
13 //! upon reconnect to the relevant peer(s).
14 //!
15 //! It does not manage routing logic (see routing::router::get_route for that) nor does it manage constructing
16 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
17 //! imply it needs to fail HTLCs/payments/channels it manages).
18 //!
19
20 use std::str::FromStr;
21 use std::ffi::c_void;
22 use bitcoin::hashes::Hash;
23 use crate::c_types::*;
24
25
26 use lightning::ln::channelmanager::ChannelManager as nativeChannelManagerImport;
27 type nativeChannelManager = nativeChannelManagerImport<crate::lightning::chain::keysinterface::Sign, crate::lightning::chain::Watch, crate::lightning::chain::chaininterface::BroadcasterInterface, crate::lightning::chain::keysinterface::KeysInterface, crate::lightning::chain::chaininterface::FeeEstimator, crate::lightning::util::logger::Logger>;
28
29 /// Manager which keeps track of a number of channels and sends messages to the appropriate
30 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
31 ///
32 /// Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
33 /// to individual Channels.
34 ///
35 /// Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
36 /// all peers during write/read (though does not modify this instance, only the instance being
37 /// serialized). This will result in any channels which have not yet exchanged funding_created (ie
38 /// called funding_transaction_generated for outbound channels).
39 ///
40 /// Note that you can be a bit lazier about writing out ChannelManager than you can be with
41 /// ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
42 /// returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
43 /// happens out-of-band (and will prevent any other ChannelManager operations from occurring during
44 /// the serialization process). If the deserialized version is out-of-date compared to the
45 /// ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
46 /// ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
47 ///
48 /// Note that the deserializer is only implemented for (BlockHash, ChannelManager), which
49 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
50 /// the \"reorg path\" (ie call block_disconnected() until you get to a common block and then call
51 /// block_connected() to step towards your best block) upon deserialization before using the
52 /// object!
53 ///
54 /// Note that ChannelManager is responsible for tracking liveness of its channels and generating
55 /// ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
56 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
57 /// offline for a full minute. In order to track this, you must call
58 /// timer_tick_occurred roughly once per minute, though it doesn't have to be perfect.
59 ///
60 /// Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
61 /// a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
62 /// essentially you should default to using a SimpleRefChannelManager, and use a
63 /// SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
64 /// you're using lightning-net-tokio.
65 #[must_use]
66 #[repr(C)]
67 pub struct ChannelManager {
68         /// A pointer to the opaque Rust object.
69
70         /// Nearly everywhere, inner must be non-null, however in places where
71         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
72         pub inner: *mut nativeChannelManager,
73         /// Indicates that this is the only struct which contains the same pointer.
74
75         /// Rust functions which take ownership of an object provided via an argument require
76         /// this to be true and invalidate the object pointed to by inner.
77         pub is_owned: bool,
78 }
79
80 impl Drop for ChannelManager {
81         fn drop(&mut self) {
82                 if self.is_owned && !<*mut nativeChannelManager>::is_null(self.inner) {
83                         let _ = unsafe { Box::from_raw(self.inner) };
84                 }
85         }
86 }
87 /// Frees any resources used by the ChannelManager, if is_owned is set and inner is non-NULL.
88 #[no_mangle]
89 pub extern "C" fn ChannelManager_free(this_obj: ChannelManager) { }
90 #[allow(unused)]
91 /// Used only if an object of this type is returned as a trait impl by a method
92 extern "C" fn ChannelManager_free_void(this_ptr: *mut c_void) {
93         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManager); }
94 }
95 #[allow(unused)]
96 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
97 impl ChannelManager {
98         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManager {
99                 assert!(self.is_owned);
100                 let ret = self.inner;
101                 self.inner = std::ptr::null_mut();
102                 ret
103         }
104 }
105
106 use lightning::ln::channelmanager::ChainParameters as nativeChainParametersImport;
107 type nativeChainParameters = nativeChainParametersImport;
108
109 /// Chain-related parameters used to construct a new `ChannelManager`.
110 ///
111 /// Typically, the block-specific parameters are derived from the best block hash for the network,
112 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
113 /// are not needed when deserializing a previously constructed `ChannelManager`.
114 #[must_use]
115 #[repr(C)]
116 pub struct ChainParameters {
117         /// A pointer to the opaque Rust object.
118
119         /// Nearly everywhere, inner must be non-null, however in places where
120         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
121         pub inner: *mut nativeChainParameters,
122         /// Indicates that this is the only struct which contains the same pointer.
123
124         /// Rust functions which take ownership of an object provided via an argument require
125         /// this to be true and invalidate the object pointed to by inner.
126         pub is_owned: bool,
127 }
128
129 impl Drop for ChainParameters {
130         fn drop(&mut self) {
131                 if self.is_owned && !<*mut nativeChainParameters>::is_null(self.inner) {
132                         let _ = unsafe { Box::from_raw(self.inner) };
133                 }
134         }
135 }
136 /// Frees any resources used by the ChainParameters, if is_owned is set and inner is non-NULL.
137 #[no_mangle]
138 pub extern "C" fn ChainParameters_free(this_obj: ChainParameters) { }
139 #[allow(unused)]
140 /// Used only if an object of this type is returned as a trait impl by a method
141 extern "C" fn ChainParameters_free_void(this_ptr: *mut c_void) {
142         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChainParameters); }
143 }
144 #[allow(unused)]
145 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
146 impl ChainParameters {
147         pub(crate) fn take_inner(mut self) -> *mut nativeChainParameters {
148                 assert!(self.is_owned);
149                 let ret = self.inner;
150                 self.inner = std::ptr::null_mut();
151                 ret
152         }
153 }
154 /// The network for determining the `chain_hash` in Lightning messages.
155 #[no_mangle]
156 pub extern "C" fn ChainParameters_get_network(this_ptr: &ChainParameters) -> crate::bitcoin::network::Network {
157         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.network;
158         crate::bitcoin::network::Network::from_bitcoin(inner_val)
159 }
160 /// The network for determining the `chain_hash` in Lightning messages.
161 #[no_mangle]
162 pub extern "C" fn ChainParameters_set_network(this_ptr: &mut ChainParameters, mut val: crate::bitcoin::network::Network) {
163         unsafe { &mut *this_ptr.inner }.network = val.into_bitcoin();
164 }
165 /// The hash and height of the latest block successfully connected.
166 ///
167 /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
168 #[no_mangle]
169 pub extern "C" fn ChainParameters_get_best_block(this_ptr: &ChainParameters) -> crate::lightning::chain::BestBlock {
170         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.best_block;
171         crate::lightning::chain::BestBlock { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
172 }
173 /// The hash and height of the latest block successfully connected.
174 ///
175 /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
176 #[no_mangle]
177 pub extern "C" fn ChainParameters_set_best_block(this_ptr: &mut ChainParameters, mut val: crate::lightning::chain::BestBlock) {
178         unsafe { &mut *this_ptr.inner }.best_block = *unsafe { Box::from_raw(val.take_inner()) };
179 }
180 /// Constructs a new ChainParameters given each field
181 #[must_use]
182 #[no_mangle]
183 pub extern "C" fn ChainParameters_new(mut network_arg: crate::bitcoin::network::Network, mut best_block_arg: crate::lightning::chain::BestBlock) -> ChainParameters {
184         ChainParameters { inner: Box::into_raw(Box::new(nativeChainParameters {
185                 network: network_arg.into_bitcoin(),
186                 best_block: *unsafe { Box::from_raw(best_block_arg.take_inner()) },
187         })), is_owned: true }
188 }
189 impl Clone for ChainParameters {
190         fn clone(&self) -> Self {
191                 Self {
192                         inner: if <*mut nativeChainParameters>::is_null(self.inner) { std::ptr::null_mut() } else {
193                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
194                         is_owned: true,
195                 }
196         }
197 }
198 #[allow(unused)]
199 /// Used only if an object of this type is returned as a trait impl by a method
200 pub(crate) extern "C" fn ChainParameters_clone_void(this_ptr: *const c_void) -> *mut c_void {
201         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChainParameters)).clone() })) as *mut c_void
202 }
203 #[no_mangle]
204 /// Creates a copy of the ChainParameters
205 pub extern "C" fn ChainParameters_clone(orig: &ChainParameters) -> ChainParameters {
206         orig.clone()
207 }
208 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
209 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
210 ///
211 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
212 ///
213 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
214
215 #[no_mangle]
216 pub static BREAKDOWN_TIMEOUT: u16 = lightning::ln::channelmanager::BREAKDOWN_TIMEOUT;
217 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
218 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
219 ///
220 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
221 ///
222 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
223
224 #[no_mangle]
225 pub static MIN_CLTV_EXPIRY_DELTA: u16 = lightning::ln::channelmanager::MIN_CLTV_EXPIRY_DELTA;
226 /// Minimum CLTV difference between the current block height and received inbound payments.
227 /// Invoices generated for payment to us must set their `min_final_cltv_expiry` field to at least
228 /// this value.
229
230 #[no_mangle]
231 pub static MIN_FINAL_CLTV_EXPIRY: u32 = lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY;
232
233 use lightning::ln::channelmanager::ChannelCounterparty as nativeChannelCounterpartyImport;
234 type nativeChannelCounterparty = nativeChannelCounterpartyImport;
235
236 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
237 /// to better separate parameters.
238 #[must_use]
239 #[repr(C)]
240 pub struct ChannelCounterparty {
241         /// A pointer to the opaque Rust object.
242
243         /// Nearly everywhere, inner must be non-null, however in places where
244         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
245         pub inner: *mut nativeChannelCounterparty,
246         /// Indicates that this is the only struct which contains the same pointer.
247
248         /// Rust functions which take ownership of an object provided via an argument require
249         /// this to be true and invalidate the object pointed to by inner.
250         pub is_owned: bool,
251 }
252
253 impl Drop for ChannelCounterparty {
254         fn drop(&mut self) {
255                 if self.is_owned && !<*mut nativeChannelCounterparty>::is_null(self.inner) {
256                         let _ = unsafe { Box::from_raw(self.inner) };
257                 }
258         }
259 }
260 /// Frees any resources used by the ChannelCounterparty, if is_owned is set and inner is non-NULL.
261 #[no_mangle]
262 pub extern "C" fn ChannelCounterparty_free(this_obj: ChannelCounterparty) { }
263 #[allow(unused)]
264 /// Used only if an object of this type is returned as a trait impl by a method
265 extern "C" fn ChannelCounterparty_free_void(this_ptr: *mut c_void) {
266         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelCounterparty); }
267 }
268 #[allow(unused)]
269 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
270 impl ChannelCounterparty {
271         pub(crate) fn take_inner(mut self) -> *mut nativeChannelCounterparty {
272                 assert!(self.is_owned);
273                 let ret = self.inner;
274                 self.inner = std::ptr::null_mut();
275                 ret
276         }
277 }
278 /// The node_id of our counterparty
279 #[no_mangle]
280 pub extern "C" fn ChannelCounterparty_get_node_id(this_ptr: &ChannelCounterparty) -> crate::c_types::PublicKey {
281         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_id;
282         crate::c_types::PublicKey::from_rust(&inner_val)
283 }
284 /// The node_id of our counterparty
285 #[no_mangle]
286 pub extern "C" fn ChannelCounterparty_set_node_id(this_ptr: &mut ChannelCounterparty, mut val: crate::c_types::PublicKey) {
287         unsafe { &mut *this_ptr.inner }.node_id = val.into_rust();
288 }
289 /// The Features the channel counterparty provided upon last connection.
290 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
291 /// many routing-relevant features are present in the init context.
292 #[no_mangle]
293 pub extern "C" fn ChannelCounterparty_get_features(this_ptr: &ChannelCounterparty) -> crate::lightning::ln::features::InitFeatures {
294         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.features;
295         crate::lightning::ln::features::InitFeatures { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
296 }
297 /// The Features the channel counterparty provided upon last connection.
298 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
299 /// many routing-relevant features are present in the init context.
300 #[no_mangle]
301 pub extern "C" fn ChannelCounterparty_set_features(this_ptr: &mut ChannelCounterparty, mut val: crate::lightning::ln::features::InitFeatures) {
302         unsafe { &mut *this_ptr.inner }.features = *unsafe { Box::from_raw(val.take_inner()) };
303 }
304 /// The value, in satoshis, that must always be held in the channel for our counterparty. This
305 /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
306 /// claiming at least this value on chain.
307 ///
308 /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
309 ///
310 /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
311 #[no_mangle]
312 pub extern "C" fn ChannelCounterparty_get_unspendable_punishment_reserve(this_ptr: &ChannelCounterparty) -> u64 {
313         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.unspendable_punishment_reserve;
314         *inner_val
315 }
316 /// The value, in satoshis, that must always be held in the channel for our counterparty. This
317 /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
318 /// claiming at least this value on chain.
319 ///
320 /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
321 ///
322 /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
323 #[no_mangle]
324 pub extern "C" fn ChannelCounterparty_set_unspendable_punishment_reserve(this_ptr: &mut ChannelCounterparty, mut val: u64) {
325         unsafe { &mut *this_ptr.inner }.unspendable_punishment_reserve = val;
326 }
327 impl Clone for ChannelCounterparty {
328         fn clone(&self) -> Self {
329                 Self {
330                         inner: if <*mut nativeChannelCounterparty>::is_null(self.inner) { std::ptr::null_mut() } else {
331                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
332                         is_owned: true,
333                 }
334         }
335 }
336 #[allow(unused)]
337 /// Used only if an object of this type is returned as a trait impl by a method
338 pub(crate) extern "C" fn ChannelCounterparty_clone_void(this_ptr: *const c_void) -> *mut c_void {
339         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelCounterparty)).clone() })) as *mut c_void
340 }
341 #[no_mangle]
342 /// Creates a copy of the ChannelCounterparty
343 pub extern "C" fn ChannelCounterparty_clone(orig: &ChannelCounterparty) -> ChannelCounterparty {
344         orig.clone()
345 }
346
347 use lightning::ln::channelmanager::ChannelDetails as nativeChannelDetailsImport;
348 type nativeChannelDetails = nativeChannelDetailsImport;
349
350 /// Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
351 #[must_use]
352 #[repr(C)]
353 pub struct ChannelDetails {
354         /// A pointer to the opaque Rust object.
355
356         /// Nearly everywhere, inner must be non-null, however in places where
357         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
358         pub inner: *mut nativeChannelDetails,
359         /// Indicates that this is the only struct which contains the same pointer.
360
361         /// Rust functions which take ownership of an object provided via an argument require
362         /// this to be true and invalidate the object pointed to by inner.
363         pub is_owned: bool,
364 }
365
366 impl Drop for ChannelDetails {
367         fn drop(&mut self) {
368                 if self.is_owned && !<*mut nativeChannelDetails>::is_null(self.inner) {
369                         let _ = unsafe { Box::from_raw(self.inner) };
370                 }
371         }
372 }
373 /// Frees any resources used by the ChannelDetails, if is_owned is set and inner is non-NULL.
374 #[no_mangle]
375 pub extern "C" fn ChannelDetails_free(this_obj: ChannelDetails) { }
376 #[allow(unused)]
377 /// Used only if an object of this type is returned as a trait impl by a method
378 extern "C" fn ChannelDetails_free_void(this_ptr: *mut c_void) {
379         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelDetails); }
380 }
381 #[allow(unused)]
382 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
383 impl ChannelDetails {
384         pub(crate) fn take_inner(mut self) -> *mut nativeChannelDetails {
385                 assert!(self.is_owned);
386                 let ret = self.inner;
387                 self.inner = std::ptr::null_mut();
388                 ret
389         }
390 }
391 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
392 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
393 /// Note that this means this value is *not* persistent - it can change once during the
394 /// lifetime of the channel.
395 #[no_mangle]
396 pub extern "C" fn ChannelDetails_get_channel_id(this_ptr: &ChannelDetails) -> *const [u8; 32] {
397         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
398         inner_val
399 }
400 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
401 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
402 /// Note that this means this value is *not* persistent - it can change once during the
403 /// lifetime of the channel.
404 #[no_mangle]
405 pub extern "C" fn ChannelDetails_set_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::ThirtyTwoBytes) {
406         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
407 }
408 /// Parameters which apply to our counterparty. See individual fields for more information.
409 #[no_mangle]
410 pub extern "C" fn ChannelDetails_get_counterparty(this_ptr: &ChannelDetails) -> crate::lightning::ln::channelmanager::ChannelCounterparty {
411         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.counterparty;
412         crate::lightning::ln::channelmanager::ChannelCounterparty { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
413 }
414 /// Parameters which apply to our counterparty. See individual fields for more information.
415 #[no_mangle]
416 pub extern "C" fn ChannelDetails_set_counterparty(this_ptr: &mut ChannelDetails, mut val: crate::lightning::ln::channelmanager::ChannelCounterparty) {
417         unsafe { &mut *this_ptr.inner }.counterparty = *unsafe { Box::from_raw(val.take_inner()) };
418 }
419 /// The Channel's funding transaction output, if we've negotiated the funding transaction with
420 /// our counterparty already.
421 ///
422 /// Note that, if this has been set, `channel_id` will be equivalent to
423 /// `funding_txo.unwrap().to_channel_id()`.
424 #[no_mangle]
425 pub extern "C" fn ChannelDetails_get_funding_txo(this_ptr: &ChannelDetails) -> crate::lightning::chain::transaction::OutPoint {
426         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_txo;
427         let mut local_inner_val = crate::lightning::chain::transaction::OutPoint { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
428         local_inner_val
429 }
430 /// The Channel's funding transaction output, if we've negotiated the funding transaction with
431 /// our counterparty already.
432 ///
433 /// Note that, if this has been set, `channel_id` will be equivalent to
434 /// `funding_txo.unwrap().to_channel_id()`.
435 #[no_mangle]
436 pub extern "C" fn ChannelDetails_set_funding_txo(this_ptr: &mut ChannelDetails, mut val: crate::lightning::chain::transaction::OutPoint) {
437         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
438         unsafe { &mut *this_ptr.inner }.funding_txo = local_val;
439 }
440 /// The position of the funding transaction in the chain. None if the funding transaction has
441 /// not yet been confirmed and the channel fully opened.
442 #[no_mangle]
443 pub extern "C" fn ChannelDetails_get_short_channel_id(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u64Z {
444         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
445         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_u64Z::None } else {  { crate::c_types::derived::COption_u64Z::Some(inner_val.unwrap()) } };
446         local_inner_val
447 }
448 /// The position of the funding transaction in the chain. None if the funding transaction has
449 /// not yet been confirmed and the channel fully opened.
450 #[no_mangle]
451 pub extern "C" fn ChannelDetails_set_short_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u64Z) {
452         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
453         unsafe { &mut *this_ptr.inner }.short_channel_id = local_val;
454 }
455 /// The value, in satoshis, of this channel as appears in the funding output
456 #[no_mangle]
457 pub extern "C" fn ChannelDetails_get_channel_value_satoshis(this_ptr: &ChannelDetails) -> u64 {
458         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_value_satoshis;
459         *inner_val
460 }
461 /// The value, in satoshis, of this channel as appears in the funding output
462 #[no_mangle]
463 pub extern "C" fn ChannelDetails_set_channel_value_satoshis(this_ptr: &mut ChannelDetails, mut val: u64) {
464         unsafe { &mut *this_ptr.inner }.channel_value_satoshis = val;
465 }
466 /// The value, in satoshis, that must always be held in the channel for us. This value ensures
467 /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
468 /// this value on chain.
469 ///
470 /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
471 ///
472 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
473 ///
474 /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
475 #[no_mangle]
476 pub extern "C" fn ChannelDetails_get_unspendable_punishment_reserve(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u64Z {
477         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.unspendable_punishment_reserve;
478         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_u64Z::None } else {  { crate::c_types::derived::COption_u64Z::Some(inner_val.unwrap()) } };
479         local_inner_val
480 }
481 /// The value, in satoshis, that must always be held in the channel for us. This value ensures
482 /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
483 /// this value on chain.
484 ///
485 /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
486 ///
487 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
488 ///
489 /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
490 #[no_mangle]
491 pub extern "C" fn ChannelDetails_set_unspendable_punishment_reserve(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u64Z) {
492         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
493         unsafe { &mut *this_ptr.inner }.unspendable_punishment_reserve = local_val;
494 }
495 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
496 #[no_mangle]
497 pub extern "C" fn ChannelDetails_get_user_id(this_ptr: &ChannelDetails) -> u64 {
498         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.user_id;
499         *inner_val
500 }
501 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
502 #[no_mangle]
503 pub extern "C" fn ChannelDetails_set_user_id(this_ptr: &mut ChannelDetails, mut val: u64) {
504         unsafe { &mut *this_ptr.inner }.user_id = val;
505 }
506 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
507 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
508 /// available for inclusion in new outbound HTLCs). This further does not include any pending
509 /// outgoing HTLCs which are awaiting some other resolution to be sent.
510 ///
511 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
512 /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
513 /// should be able to spend nearly this amount.
514 #[no_mangle]
515 pub extern "C" fn ChannelDetails_get_outbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
516         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.outbound_capacity_msat;
517         *inner_val
518 }
519 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
520 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
521 /// available for inclusion in new outbound HTLCs). This further does not include any pending
522 /// outgoing HTLCs which are awaiting some other resolution to be sent.
523 ///
524 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
525 /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
526 /// should be able to spend nearly this amount.
527 #[no_mangle]
528 pub extern "C" fn ChannelDetails_set_outbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
529         unsafe { &mut *this_ptr.inner }.outbound_capacity_msat = val;
530 }
531 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
532 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
533 /// available for inclusion in new inbound HTLCs).
534 /// Note that there are some corner cases not fully handled here, so the actual available
535 /// inbound capacity may be slightly higher than this.
536 ///
537 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
538 /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
539 /// However, our counterparty should be able to spend nearly this amount.
540 #[no_mangle]
541 pub extern "C" fn ChannelDetails_get_inbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
542         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.inbound_capacity_msat;
543         *inner_val
544 }
545 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
546 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
547 /// available for inclusion in new inbound HTLCs).
548 /// Note that there are some corner cases not fully handled here, so the actual available
549 /// inbound capacity may be slightly higher than this.
550 ///
551 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
552 /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
553 /// However, our counterparty should be able to spend nearly this amount.
554 #[no_mangle]
555 pub extern "C" fn ChannelDetails_set_inbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
556         unsafe { &mut *this_ptr.inner }.inbound_capacity_msat = val;
557 }
558 /// The number of required confirmations on the funding transaction before the funding will be
559 /// considered \"locked\". This number is selected by the channel fundee (i.e. us if
560 /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
561 /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
562 /// [`ChannelHandshakeLimits::max_minimum_depth`].
563 ///
564 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
565 ///
566 /// [`is_outbound`]: ChannelDetails::is_outbound
567 /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
568 /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
569 #[no_mangle]
570 pub extern "C" fn ChannelDetails_get_confirmations_required(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u32Z {
571         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.confirmations_required;
572         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_u32Z::None } else {  { crate::c_types::derived::COption_u32Z::Some(inner_val.unwrap()) } };
573         local_inner_val
574 }
575 /// The number of required confirmations on the funding transaction before the funding will be
576 /// considered \"locked\". This number is selected by the channel fundee (i.e. us if
577 /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
578 /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
579 /// [`ChannelHandshakeLimits::max_minimum_depth`].
580 ///
581 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
582 ///
583 /// [`is_outbound`]: ChannelDetails::is_outbound
584 /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
585 /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
586 #[no_mangle]
587 pub extern "C" fn ChannelDetails_set_confirmations_required(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u32Z) {
588         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
589         unsafe { &mut *this_ptr.inner }.confirmations_required = local_val;
590 }
591 /// The number of blocks (after our commitment transaction confirms) that we will need to wait
592 /// until we can claim our funds after we force-close the channel. During this time our
593 /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
594 /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
595 /// time to claim our non-HTLC-encumbered funds.
596 ///
597 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
598 #[no_mangle]
599 pub extern "C" fn ChannelDetails_get_force_close_spend_delay(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u16Z {
600         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.force_close_spend_delay;
601         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_u16Z::None } else {  { crate::c_types::derived::COption_u16Z::Some(inner_val.unwrap()) } };
602         local_inner_val
603 }
604 /// The number of blocks (after our commitment transaction confirms) that we will need to wait
605 /// until we can claim our funds after we force-close the channel. During this time our
606 /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
607 /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
608 /// time to claim our non-HTLC-encumbered funds.
609 ///
610 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
611 #[no_mangle]
612 pub extern "C" fn ChannelDetails_set_force_close_spend_delay(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u16Z) {
613         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
614         unsafe { &mut *this_ptr.inner }.force_close_spend_delay = local_val;
615 }
616 /// True if the channel was initiated (and thus funded) by us.
617 #[no_mangle]
618 pub extern "C" fn ChannelDetails_get_is_outbound(this_ptr: &ChannelDetails) -> bool {
619         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_outbound;
620         *inner_val
621 }
622 /// True if the channel was initiated (and thus funded) by us.
623 #[no_mangle]
624 pub extern "C" fn ChannelDetails_set_is_outbound(this_ptr: &mut ChannelDetails, mut val: bool) {
625         unsafe { &mut *this_ptr.inner }.is_outbound = val;
626 }
627 /// True if the channel is confirmed, funding_locked messages have been exchanged, and the
628 /// channel is not currently being shut down. `funding_locked` message exchange implies the
629 /// required confirmation count has been reached (and we were connected to the peer at some
630 /// point after the funding transaction received enough confirmations). The required
631 /// confirmation count is provided in [`confirmations_required`].
632 ///
633 /// [`confirmations_required`]: ChannelDetails::confirmations_required
634 #[no_mangle]
635 pub extern "C" fn ChannelDetails_get_is_funding_locked(this_ptr: &ChannelDetails) -> bool {
636         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_funding_locked;
637         *inner_val
638 }
639 /// True if the channel is confirmed, funding_locked messages have been exchanged, and the
640 /// channel is not currently being shut down. `funding_locked` message exchange implies the
641 /// required confirmation count has been reached (and we were connected to the peer at some
642 /// point after the funding transaction received enough confirmations). The required
643 /// confirmation count is provided in [`confirmations_required`].
644 ///
645 /// [`confirmations_required`]: ChannelDetails::confirmations_required
646 #[no_mangle]
647 pub extern "C" fn ChannelDetails_set_is_funding_locked(this_ptr: &mut ChannelDetails, mut val: bool) {
648         unsafe { &mut *this_ptr.inner }.is_funding_locked = val;
649 }
650 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
651 /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
652 ///
653 /// This is a strict superset of `is_funding_locked`.
654 #[no_mangle]
655 pub extern "C" fn ChannelDetails_get_is_usable(this_ptr: &ChannelDetails) -> bool {
656         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_usable;
657         *inner_val
658 }
659 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
660 /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
661 ///
662 /// This is a strict superset of `is_funding_locked`.
663 #[no_mangle]
664 pub extern "C" fn ChannelDetails_set_is_usable(this_ptr: &mut ChannelDetails, mut val: bool) {
665         unsafe { &mut *this_ptr.inner }.is_usable = val;
666 }
667 /// True if this channel is (or will be) publicly-announced.
668 #[no_mangle]
669 pub extern "C" fn ChannelDetails_get_is_public(this_ptr: &ChannelDetails) -> bool {
670         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_public;
671         *inner_val
672 }
673 /// True if this channel is (or will be) publicly-announced.
674 #[no_mangle]
675 pub extern "C" fn ChannelDetails_set_is_public(this_ptr: &mut ChannelDetails, mut val: bool) {
676         unsafe { &mut *this_ptr.inner }.is_public = val;
677 }
678 /// Constructs a new ChannelDetails given each field
679 #[must_use]
680 #[no_mangle]
681 pub extern "C" fn ChannelDetails_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut counterparty_arg: crate::lightning::ln::channelmanager::ChannelCounterparty, mut funding_txo_arg: crate::lightning::chain::transaction::OutPoint, mut short_channel_id_arg: crate::c_types::derived::COption_u64Z, mut channel_value_satoshis_arg: u64, mut unspendable_punishment_reserve_arg: crate::c_types::derived::COption_u64Z, mut user_id_arg: u64, mut outbound_capacity_msat_arg: u64, mut inbound_capacity_msat_arg: u64, mut confirmations_required_arg: crate::c_types::derived::COption_u32Z, mut force_close_spend_delay_arg: crate::c_types::derived::COption_u16Z, mut is_outbound_arg: bool, mut is_funding_locked_arg: bool, mut is_usable_arg: bool, mut is_public_arg: bool) -> ChannelDetails {
682         let mut local_funding_txo_arg = if funding_txo_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(funding_txo_arg.take_inner()) } }) };
683         let mut local_short_channel_id_arg = if short_channel_id_arg.is_some() { Some( { short_channel_id_arg.take() }) } else { None };
684         let mut local_unspendable_punishment_reserve_arg = if unspendable_punishment_reserve_arg.is_some() { Some( { unspendable_punishment_reserve_arg.take() }) } else { None };
685         let mut local_confirmations_required_arg = if confirmations_required_arg.is_some() { Some( { confirmations_required_arg.take() }) } else { None };
686         let mut local_force_close_spend_delay_arg = if force_close_spend_delay_arg.is_some() { Some( { force_close_spend_delay_arg.take() }) } else { None };
687         ChannelDetails { inner: Box::into_raw(Box::new(nativeChannelDetails {
688                 channel_id: channel_id_arg.data,
689                 counterparty: *unsafe { Box::from_raw(counterparty_arg.take_inner()) },
690                 funding_txo: local_funding_txo_arg,
691                 short_channel_id: local_short_channel_id_arg,
692                 channel_value_satoshis: channel_value_satoshis_arg,
693                 unspendable_punishment_reserve: local_unspendable_punishment_reserve_arg,
694                 user_id: user_id_arg,
695                 outbound_capacity_msat: outbound_capacity_msat_arg,
696                 inbound_capacity_msat: inbound_capacity_msat_arg,
697                 confirmations_required: local_confirmations_required_arg,
698                 force_close_spend_delay: local_force_close_spend_delay_arg,
699                 is_outbound: is_outbound_arg,
700                 is_funding_locked: is_funding_locked_arg,
701                 is_usable: is_usable_arg,
702                 is_public: is_public_arg,
703         })), is_owned: true }
704 }
705 impl Clone for ChannelDetails {
706         fn clone(&self) -> Self {
707                 Self {
708                         inner: if <*mut nativeChannelDetails>::is_null(self.inner) { std::ptr::null_mut() } else {
709                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
710                         is_owned: true,
711                 }
712         }
713 }
714 #[allow(unused)]
715 /// Used only if an object of this type is returned as a trait impl by a method
716 pub(crate) extern "C" fn ChannelDetails_clone_void(this_ptr: *const c_void) -> *mut c_void {
717         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelDetails)).clone() })) as *mut c_void
718 }
719 #[no_mangle]
720 /// Creates a copy of the ChannelDetails
721 pub extern "C" fn ChannelDetails_clone(orig: &ChannelDetails) -> ChannelDetails {
722         orig.clone()
723 }
724 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
725 /// Err() type describing which state the payment is in, see the description of individual enum
726 /// states for more.
727 #[must_use]
728 #[derive(Clone)]
729 #[repr(C)]
730 pub enum PaymentSendFailure {
731         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
732         /// send the payment at all. No channel state has been changed or messages sent to peers, and
733         /// once you've changed the parameter at error, you can freely retry the payment in full.
734         ParameterError(crate::lightning::util::errors::APIError),
735         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
736         /// from attempting to send the payment at all. No channel state has been changed or messages
737         /// sent to peers, and once you've changed the parameter at error, you can freely retry the
738         /// payment in full.
739         ///
740         /// The results here are ordered the same as the paths in the route object which was passed to
741         /// send_payment.
742         PathParameterError(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
743         /// All paths which were attempted failed to send, with no channel state change taking place.
744         /// You can freely retry the payment in full (though you probably want to do so over different
745         /// paths than the ones selected).
746         AllFailedRetrySafe(crate::c_types::derived::CVec_APIErrorZ),
747         /// Some paths which were attempted failed to send, though possibly not all. At least some
748         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
749         /// in over-/re-payment.
750         ///
751         /// The results here are ordered the same as the paths in the route object which was passed to
752         /// send_payment, and any Errs which are not APIError::MonitorUpdateFailed can be safely
753         /// retried (though there is currently no API with which to do so).
754         ///
755         /// Any entries which contain Err(APIError::MonitorUpdateFailed) or Ok(()) MUST NOT be retried
756         /// as they will result in over-/re-payment. These HTLCs all either successfully sent (in the
757         /// case of Ok(())) or will send once channel_monitor_updated is called on the next-hop channel
758         /// with the latest update_id.
759         PartialFailure(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
760 }
761 use lightning::ln::channelmanager::PaymentSendFailure as nativePaymentSendFailure;
762 impl PaymentSendFailure {
763         #[allow(unused)]
764         pub(crate) fn to_native(&self) -> nativePaymentSendFailure {
765                 match self {
766                         PaymentSendFailure::ParameterError (ref a, ) => {
767                                 let mut a_nonref = (*a).clone();
768                                 nativePaymentSendFailure::ParameterError (
769                                         a_nonref.into_native(),
770                                 )
771                         },
772                         PaymentSendFailure::PathParameterError (ref a, ) => {
773                                 let mut a_nonref = (*a).clone();
774                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { let mut local_a_nonref_0 = match item.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.err)) }).into_native() })}; local_a_nonref_0 }); };
775                                 nativePaymentSendFailure::PathParameterError (
776                                         local_a_nonref,
777                                 )
778                         },
779                         PaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
780                                 let mut a_nonref = (*a).clone();
781                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { item.into_native() }); };
782                                 nativePaymentSendFailure::AllFailedRetrySafe (
783                                         local_a_nonref,
784                                 )
785                         },
786                         PaymentSendFailure::PartialFailure (ref a, ) => {
787                                 let mut a_nonref = (*a).clone();
788                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { let mut local_a_nonref_0 = match item.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.err)) }).into_native() })}; local_a_nonref_0 }); };
789                                 nativePaymentSendFailure::PartialFailure (
790                                         local_a_nonref,
791                                 )
792                         },
793                 }
794         }
795         #[allow(unused)]
796         pub(crate) fn into_native(self) -> nativePaymentSendFailure {
797                 match self {
798                         PaymentSendFailure::ParameterError (mut a, ) => {
799                                 nativePaymentSendFailure::ParameterError (
800                                         a.into_native(),
801                                 )
802                         },
803                         PaymentSendFailure::PathParameterError (mut a, ) => {
804                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { let mut local_a_0 = match item.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.err)) }).into_native() })}; local_a_0 }); };
805                                 nativePaymentSendFailure::PathParameterError (
806                                         local_a,
807                                 )
808                         },
809                         PaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
810                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { item.into_native() }); };
811                                 nativePaymentSendFailure::AllFailedRetrySafe (
812                                         local_a,
813                                 )
814                         },
815                         PaymentSendFailure::PartialFailure (mut a, ) => {
816                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { let mut local_a_0 = match item.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.err)) }).into_native() })}; local_a_0 }); };
817                                 nativePaymentSendFailure::PartialFailure (
818                                         local_a,
819                                 )
820                         },
821                 }
822         }
823         #[allow(unused)]
824         pub(crate) fn from_native(native: &nativePaymentSendFailure) -> Self {
825                 match native {
826                         nativePaymentSendFailure::ParameterError (ref a, ) => {
827                                 let mut a_nonref = (*a).clone();
828                                 PaymentSendFailure::ParameterError (
829                                         crate::lightning::util::errors::APIError::native_into(a_nonref),
830                                 )
831                         },
832                         nativePaymentSendFailure::PathParameterError (ref a, ) => {
833                                 let mut a_nonref = (*a).clone();
834                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.drain(..) { local_a_nonref.push( { let mut local_a_nonref_0 = match item { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() }; local_a_nonref_0 }); };
835                                 PaymentSendFailure::PathParameterError (
836                                         local_a_nonref.into(),
837                                 )
838                         },
839                         nativePaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
840                                 let mut a_nonref = (*a).clone();
841                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.drain(..) { local_a_nonref.push( { crate::lightning::util::errors::APIError::native_into(item) }); };
842                                 PaymentSendFailure::AllFailedRetrySafe (
843                                         local_a_nonref.into(),
844                                 )
845                         },
846                         nativePaymentSendFailure::PartialFailure (ref a, ) => {
847                                 let mut a_nonref = (*a).clone();
848                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.drain(..) { local_a_nonref.push( { let mut local_a_nonref_0 = match item { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() }; local_a_nonref_0 }); };
849                                 PaymentSendFailure::PartialFailure (
850                                         local_a_nonref.into(),
851                                 )
852                         },
853                 }
854         }
855         #[allow(unused)]
856         pub(crate) fn native_into(native: nativePaymentSendFailure) -> Self {
857                 match native {
858                         nativePaymentSendFailure::ParameterError (mut a, ) => {
859                                 PaymentSendFailure::ParameterError (
860                                         crate::lightning::util::errors::APIError::native_into(a),
861                                 )
862                         },
863                         nativePaymentSendFailure::PathParameterError (mut a, ) => {
864                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { let mut local_a_0 = match item { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() }; local_a_0 }); };
865                                 PaymentSendFailure::PathParameterError (
866                                         local_a.into(),
867                                 )
868                         },
869                         nativePaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
870                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { crate::lightning::util::errors::APIError::native_into(item) }); };
871                                 PaymentSendFailure::AllFailedRetrySafe (
872                                         local_a.into(),
873                                 )
874                         },
875                         nativePaymentSendFailure::PartialFailure (mut a, ) => {
876                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { let mut local_a_0 = match item { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() }; local_a_0 }); };
877                                 PaymentSendFailure::PartialFailure (
878                                         local_a.into(),
879                                 )
880                         },
881                 }
882         }
883 }
884 /// Frees any resources used by the PaymentSendFailure
885 #[no_mangle]
886 pub extern "C" fn PaymentSendFailure_free(this_ptr: PaymentSendFailure) { }
887 /// Creates a copy of the PaymentSendFailure
888 #[no_mangle]
889 pub extern "C" fn PaymentSendFailure_clone(orig: &PaymentSendFailure) -> PaymentSendFailure {
890         orig.clone()
891 }
892 /// Constructs a new ChannelManager to hold several channels and route between them.
893 ///
894 /// This is the main \"logic hub\" for all channel-related actions, and implements
895 /// ChannelMessageHandler.
896 ///
897 /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
898 ///
899 /// panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
900 ///
901 /// Users need to notify the new ChannelManager when a new block is connected or
902 /// disconnected using its `block_connected` and `block_disconnected` methods, starting
903 /// from after `params.latest_hash`.
904 #[must_use]
905 #[no_mangle]
906 pub extern "C" fn ChannelManager_new(mut fee_est: crate::lightning::chain::chaininterface::FeeEstimator, mut chain_monitor: crate::lightning::chain::Watch, mut tx_broadcaster: crate::lightning::chain::chaininterface::BroadcasterInterface, mut logger: crate::lightning::util::logger::Logger, mut keys_manager: crate::lightning::chain::keysinterface::KeysInterface, mut config: crate::lightning::util::config::UserConfig, mut params: crate::lightning::ln::channelmanager::ChainParameters) -> ChannelManager {
907         let mut ret = lightning::ln::channelmanager::ChannelManager::new(fee_est, chain_monitor, tx_broadcaster, logger, keys_manager, *unsafe { Box::from_raw(config.take_inner()) }, *unsafe { Box::from_raw(params.take_inner()) });
908         ChannelManager { inner: Box::into_raw(Box::new(ret)), is_owned: true }
909 }
910
911 /// Gets the current configuration applied to all new channels,  as
912 #[must_use]
913 #[no_mangle]
914 pub extern "C" fn ChannelManager_get_current_default_configuration(this_arg: &ChannelManager) -> crate::lightning::util::config::UserConfig {
915         let mut ret = unsafe { &*this_arg.inner }.get_current_default_configuration();
916         crate::lightning::util::config::UserConfig { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
917 }
918
919 /// Creates a new outbound channel to the given remote node and with the given value.
920 ///
921 /// user_id will be provided back as user_channel_id in FundingGenerationReady events to allow
922 /// tracking of which events correspond with which create_channel call. Note that the
923 /// user_channel_id defaults to 0 for inbound channels, so you may wish to avoid using 0 for
924 /// user_id here. user_id has no meaning inside of LDK, it is simply copied to events and
925 /// otherwise ignored.
926 ///
927 /// If successful, will generate a SendOpenChannel message event, so you should probably poll
928 /// PeerManager::process_events afterwards.
929 ///
930 /// Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat is
931 /// greater than channel_value_satoshis * 1k or channel_value_satoshis is < 1000.
932 ///
933 /// Note that we do not check if you are currently connected to the given peer. If no
934 /// connection is available, the outbound `open_channel` message may fail to send, resulting in
935 /// the channel eventually being silently forgotten.
936 #[must_use]
937 #[no_mangle]
938 pub extern "C" fn ChannelManager_create_channel(this_arg: &ChannelManager, mut their_network_key: crate::c_types::PublicKey, mut channel_value_satoshis: u64, mut push_msat: u64, mut user_id: u64, mut override_config: crate::lightning::util::config::UserConfig) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
939         let mut local_override_config = if override_config.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(override_config.take_inner()) } }) };
940         let mut ret = unsafe { &*this_arg.inner }.create_channel(their_network_key.into_rust(), channel_value_satoshis, push_msat, user_id, local_override_config);
941         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
942         local_ret
943 }
944
945 /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
946 /// more information.
947 #[must_use]
948 #[no_mangle]
949 pub extern "C" fn ChannelManager_list_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
950         let mut ret = unsafe { &*this_arg.inner }.list_channels();
951         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::channelmanager::ChannelDetails { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
952         local_ret.into()
953 }
954
955 /// Gets the list of usable channels, in random order. Useful as an argument to
956 /// get_route to ensure non-announced channels are used.
957 ///
958 /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
959 /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
960 /// are.
961 #[must_use]
962 #[no_mangle]
963 pub extern "C" fn ChannelManager_list_usable_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
964         let mut ret = unsafe { &*this_arg.inner }.list_usable_channels();
965         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::channelmanager::ChannelDetails { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
966         local_ret.into()
967 }
968
969 /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
970 /// will be accepted on the given channel, and after additional timeout/the closing of all
971 /// pending HTLCs, the channel will be closed on chain.
972 ///
973 /// May generate a SendShutdown message event on success, which should be relayed.
974 #[must_use]
975 #[no_mangle]
976 pub extern "C" fn ChannelManager_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
977         let mut ret = unsafe { &*this_arg.inner }.close_channel(unsafe { &*channel_id});
978         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
979         local_ret
980 }
981
982 /// Force closes a channel, immediately broadcasting the latest local commitment transaction to
983 /// the chain and rejecting new HTLCs on the given channel. Fails if channel_id is unknown to the manager.
984 #[must_use]
985 #[no_mangle]
986 pub extern "C" fn ChannelManager_force_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
987         let mut ret = unsafe { &*this_arg.inner }.force_close_channel(unsafe { &*channel_id});
988         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
989         local_ret
990 }
991
992 /// Force close all channels, immediately broadcasting the latest local commitment transaction
993 /// for each to the chain and rejecting new HTLCs on each.
994 #[no_mangle]
995 pub extern "C" fn ChannelManager_force_close_all_channels(this_arg: &ChannelManager) {
996         unsafe { &*this_arg.inner }.force_close_all_channels()
997 }
998
999 /// Sends a payment along a given route.
1000 ///
1001 /// Value parameters are provided via the last hop in route, see documentation for RouteHop
1002 /// fields for more info.
1003 ///
1004 /// Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
1005 /// payment), we don't do anything to stop you! We always try to ensure that if the provided
1006 /// next hop knows the preimage to payment_hash they can claim an additional amount as
1007 /// specified in the last hop in the route! Thus, you should probably do your own
1008 /// payment_preimage tracking (which you should already be doing as they represent \"proof of
1009 /// payment\") and prevent double-sends yourself.
1010 ///
1011 /// May generate SendHTLCs message(s) event on success, which should be relayed.
1012 ///
1013 /// Each path may have a different return value, and PaymentSendValue may return a Vec with
1014 /// each entry matching the corresponding-index entry in the route paths, see
1015 /// PaymentSendFailure for more info.
1016 ///
1017 /// In general, a path may raise:
1018 ///  * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
1019 ///    node public key) is specified.
1020 ///  * APIError::ChannelUnavailable if the next-hop channel is not available for updates
1021 ///    (including due to previous monitor update failure or new permanent monitor update
1022 ///    failure).
1023 ///  * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
1024 ///    relevant updates.
1025 ///
1026 /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
1027 /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
1028 /// different route unless you intend to pay twice!
1029 ///
1030 /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
1031 /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
1032 /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
1033 /// must not contain multiple paths as multi-path payments require a recipient-provided
1034 /// payment_secret.
1035 /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
1036 /// bit set (either as required or as available). If multiple paths are present in the Route,
1037 /// we assume the invoice had the basic_mpp feature set.
1038 #[must_use]
1039 #[no_mangle]
1040 pub extern "C" fn ChannelManager_send_payment(this_arg: &ChannelManager, route: &crate::lightning::routing::router::Route, mut payment_hash: crate::c_types::ThirtyTwoBytes, mut payment_secret: crate::c_types::ThirtyTwoBytes) -> crate::c_types::derived::CResult_NonePaymentSendFailureZ {
1041         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::PaymentSecret(payment_secret.data) }) };
1042         let mut ret = unsafe { &*this_arg.inner }.send_payment(unsafe { &*route.inner }, ::lightning::ln::PaymentHash(payment_hash.data), &local_payment_secret);
1043         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::channelmanager::PaymentSendFailure::native_into(e) }).into() };
1044         local_ret
1045 }
1046
1047 /// Call this upon creation of a funding transaction for the given channel.
1048 ///
1049 /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
1050 /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
1051 ///
1052 /// Panics if a funding transaction has already been provided for this channel.
1053 ///
1054 /// May panic if the output found in the funding transaction is duplicative with some other
1055 /// channel (note that this should be trivially prevented by using unique funding transaction
1056 /// keys per-channel).
1057 ///
1058 /// Do NOT broadcast the funding transaction yourself. When we have safely received our
1059 /// counterparty's signature the funding transaction will automatically be broadcast via the
1060 /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
1061 ///
1062 /// Note that this includes RBF or similar transaction replacement strategies - lightning does
1063 /// not currently support replacing a funding transaction on an existing channel. Instead,
1064 /// create a new channel with a conflicting funding transaction.
1065 ///
1066 /// [`Event::FundingGenerationReady`]: crate::util::events::Event::FundingGenerationReady
1067 #[must_use]
1068 #[no_mangle]
1069 pub extern "C" fn ChannelManager_funding_transaction_generated(this_arg: &ChannelManager, temporary_channel_id: *const [u8; 32], mut funding_transaction: crate::c_types::Transaction) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
1070         let mut ret = unsafe { &*this_arg.inner }.funding_transaction_generated(unsafe { &*temporary_channel_id}, funding_transaction.into_bitcoin());
1071         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
1072         local_ret
1073 }
1074
1075 /// Regenerates channel_announcements and generates a signed node_announcement from the given
1076 /// arguments, providing them in corresponding events via
1077 /// [`get_and_clear_pending_msg_events`], if at least one public channel has been confirmed
1078 /// on-chain. This effectively re-broadcasts all channel announcements and sends our node
1079 /// announcement to ensure that the lightning P2P network is aware of the channels we have and
1080 /// our network addresses.
1081 ///
1082 /// `rgb` is a node \"color\" and `alias` is a printable human-readable string to describe this
1083 /// node to humans. They carry no in-protocol meaning.
1084 ///
1085 /// `addresses` represent the set (possibly empty) of socket addresses on which this node
1086 /// accepts incoming connections. These will be included in the node_announcement, publicly
1087 /// tying these addresses together and to this node. If you wish to preserve user privacy,
1088 /// addresses should likely contain only Tor Onion addresses.
1089 ///
1090 /// Panics if `addresses` is absurdly large (more than 500).
1091 ///
1092 /// [`get_and_clear_pending_msg_events`]: MessageSendEventsProvider::get_and_clear_pending_msg_events
1093 #[no_mangle]
1094 pub extern "C" fn ChannelManager_broadcast_node_announcement(this_arg: &ChannelManager, mut rgb: crate::c_types::ThreeBytes, mut alias: crate::c_types::ThirtyTwoBytes, mut addresses: crate::c_types::derived::CVec_NetAddressZ) {
1095         let mut local_addresses = Vec::new(); for mut item in addresses.into_rust().drain(..) { local_addresses.push( { item.into_native() }); };
1096         unsafe { &*this_arg.inner }.broadcast_node_announcement(rgb.data, alias.data, local_addresses)
1097 }
1098
1099 /// Processes HTLCs which are pending waiting on random forward delay.
1100 ///
1101 /// Should only really ever be called in response to a PendingHTLCsForwardable event.
1102 /// Will likely generate further events.
1103 #[no_mangle]
1104 pub extern "C" fn ChannelManager_process_pending_htlc_forwards(this_arg: &ChannelManager) {
1105         unsafe { &*this_arg.inner }.process_pending_htlc_forwards()
1106 }
1107
1108 /// If a peer is disconnected we mark any channels with that peer as 'disabled'.
1109 /// After some time, if channels are still disabled we need to broadcast a ChannelUpdate
1110 /// to inform the network about the uselessness of these channels.
1111 ///
1112 /// This method handles all the details, and must be called roughly once per minute.
1113 ///
1114 /// Note that in some rare cases this may generate a `chain::Watch::update_channel` call.
1115 #[no_mangle]
1116 pub extern "C" fn ChannelManager_timer_tick_occurred(this_arg: &ChannelManager) {
1117         unsafe { &*this_arg.inner }.timer_tick_occurred()
1118 }
1119
1120 /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
1121 /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
1122 /// along the path (including in our own channel on which we received it).
1123 /// Returns false if no payment was found to fail backwards, true if the process of failing the
1124 /// HTLC backwards has been started.
1125 #[must_use]
1126 #[no_mangle]
1127 pub extern "C" fn ChannelManager_fail_htlc_backwards(this_arg: &ChannelManager, payment_hash: *const [u8; 32]) -> bool {
1128         let mut ret = unsafe { &*this_arg.inner }.fail_htlc_backwards(&::lightning::ln::PaymentHash(unsafe { *payment_hash }));
1129         ret
1130 }
1131
1132 /// Provides a payment preimage in response to a PaymentReceived event, returning true and
1133 /// generating message events for the net layer to claim the payment, if possible. Thus, you
1134 /// should probably kick the net layer to go send messages if this returns true!
1135 ///
1136 /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
1137 /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentReceived`
1138 /// event matches your expectation. If you fail to do so and call this method, you may provide
1139 /// the sender \"proof-of-payment\" when they did not fulfill the full expected payment.
1140 ///
1141 /// May panic if called except in response to a PaymentReceived event.
1142 ///
1143 /// [`create_inbound_payment`]: Self::create_inbound_payment
1144 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1145 #[must_use]
1146 #[no_mangle]
1147 pub extern "C" fn ChannelManager_claim_funds(this_arg: &ChannelManager, mut payment_preimage: crate::c_types::ThirtyTwoBytes) -> bool {
1148         let mut ret = unsafe { &*this_arg.inner }.claim_funds(::lightning::ln::PaymentPreimage(payment_preimage.data));
1149         ret
1150 }
1151
1152 /// Gets the node_id held by this ChannelManager
1153 #[must_use]
1154 #[no_mangle]
1155 pub extern "C" fn ChannelManager_get_our_node_id(this_arg: &ChannelManager) -> crate::c_types::PublicKey {
1156         let mut ret = unsafe { &*this_arg.inner }.get_our_node_id();
1157         crate::c_types::PublicKey::from_rust(&ret)
1158 }
1159
1160 /// Restores a single, given channel to normal operation after a
1161 /// ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
1162 /// operation.
1163 ///
1164 /// All ChannelMonitor updates up to and including highest_applied_update_id must have been
1165 /// fully committed in every copy of the given channels' ChannelMonitors.
1166 ///
1167 /// Note that there is no effect to calling with a highest_applied_update_id other than the
1168 /// current latest ChannelMonitorUpdate and one call to this function after multiple
1169 /// ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
1170 /// exists largely only to prevent races between this and concurrent update_monitor calls.
1171 ///
1172 /// Thus, the anticipated use is, at a high level:
1173 ///  1) You register a chain::Watch with this ChannelManager,
1174 ///  2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
1175 ///     said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
1176 ///     any time it cannot do so instantly,
1177 ///  3) update(s) are applied to each remote copy of a ChannelMonitor,
1178 ///  4) once all remote copies are updated, you call this function with the update_id that
1179 ///     completed, and once it is the latest the Channel will be re-enabled.
1180 #[no_mangle]
1181 pub extern "C" fn ChannelManager_channel_monitor_updated(this_arg: &ChannelManager, funding_txo: &crate::lightning::chain::transaction::OutPoint, mut highest_applied_update_id: u64) {
1182         unsafe { &*this_arg.inner }.channel_monitor_updated(unsafe { &*funding_txo.inner }, highest_applied_update_id)
1183 }
1184
1185 /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
1186 /// to pay us.
1187 ///
1188 /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
1189 /// [`PaymentHash`] and [`PaymentPreimage`] for you, returning the first and storing the second.
1190 ///
1191 /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentReceived`], which
1192 /// will have the [`PaymentReceived::payment_preimage`] field filled in. That should then be
1193 /// passed directly to [`claim_funds`].
1194 ///
1195 /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
1196 ///
1197 /// [`claim_funds`]: Self::claim_funds
1198 /// [`PaymentReceived`]: events::Event::PaymentReceived
1199 /// [`PaymentReceived::payment_preimage`]: events::Event::PaymentReceived::payment_preimage
1200 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1201 #[must_use]
1202 #[no_mangle]
1203 pub extern "C" fn ChannelManager_create_inbound_payment(this_arg: &ChannelManager, mut min_value_msat: crate::c_types::derived::COption_u64Z, mut invoice_expiry_delta_secs: u32, mut user_payment_id: u64) -> crate::c_types::derived::C2Tuple_PaymentHashPaymentSecretZ {
1204         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1205         let mut ret = unsafe { &*this_arg.inner }.create_inbound_payment(local_min_value_msat, invoice_expiry_delta_secs, user_payment_id);
1206         let (mut orig_ret_0, mut orig_ret_1) = ret; let mut local_ret = (crate::c_types::ThirtyTwoBytes { data: orig_ret_0.0 }, crate::c_types::ThirtyTwoBytes { data: orig_ret_1.0 }).into();
1207         local_ret
1208 }
1209
1210 /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
1211 /// stored external to LDK.
1212 ///
1213 /// A [`PaymentReceived`] event will only be generated if the [`PaymentSecret`] matches a
1214 /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
1215 /// the `min_value_msat` provided here, if one is provided.
1216 ///
1217 /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) must be globally unique. This
1218 /// method may return an Err if another payment with the same payment_hash is still pending.
1219 ///
1220 /// `user_payment_id` will be provided back in [`PaymentReceived::user_payment_id`] events to
1221 /// allow tracking of which events correspond with which calls to this and
1222 /// [`create_inbound_payment`]. `user_payment_id` has no meaning inside of LDK, it is simply
1223 /// copied to events and otherwise ignored. It may be used to correlate PaymentReceived events
1224 /// with invoice metadata stored elsewhere.
1225 ///
1226 /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
1227 /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
1228 /// before a [`PaymentReceived`] event will be generated, ensuring that we do not provide the
1229 /// sender \"proof-of-payment\" unless they have paid the required amount.
1230 ///
1231 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
1232 /// in excess of the current time. This should roughly match the expiry time set in the invoice.
1233 /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
1234 /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
1235 /// invoices when no timeout is set.
1236 ///
1237 /// Note that we use block header time to time-out pending inbound payments (with some margin
1238 /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
1239 /// accept a payment and generate a [`PaymentReceived`] event for some time after the expiry.
1240 /// If you need exact expiry semantics, you should enforce them upon receipt of
1241 /// [`PaymentReceived`].
1242 ///
1243 /// Pending inbound payments are stored in memory and in serialized versions of this
1244 /// [`ChannelManager`]. If potentially unbounded numbers of inbound payments may exist and
1245 /// space is limited, you may wish to rate-limit inbound payment creation.
1246 ///
1247 /// May panic if `invoice_expiry_delta_secs` is greater than one year.
1248 ///
1249 /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry`
1250 /// set to at least [`MIN_FINAL_CLTV_EXPIRY`].
1251 ///
1252 /// [`create_inbound_payment`]: Self::create_inbound_payment
1253 /// [`PaymentReceived`]: events::Event::PaymentReceived
1254 /// [`PaymentReceived::user_payment_id`]: events::Event::PaymentReceived::user_payment_id
1255 #[must_use]
1256 #[no_mangle]
1257 pub extern "C" fn ChannelManager_create_inbound_payment_for_hash(this_arg: &ChannelManager, mut payment_hash: crate::c_types::ThirtyTwoBytes, mut min_value_msat: crate::c_types::derived::COption_u64Z, mut invoice_expiry_delta_secs: u32, mut user_payment_id: u64) -> crate::c_types::derived::CResult_PaymentSecretAPIErrorZ {
1258         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1259         let mut ret = unsafe { &*this_arg.inner }.create_inbound_payment_for_hash(::lightning::ln::PaymentHash(payment_hash.data), local_min_value_msat, invoice_expiry_delta_secs, user_payment_id);
1260         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::ThirtyTwoBytes { data: o.0 } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
1261         local_ret
1262 }
1263
1264 impl From<nativeChannelManager> for crate::lightning::util::events::MessageSendEventsProvider {
1265         fn from(obj: nativeChannelManager) -> Self {
1266                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1267                 let mut ret = ChannelManager_as_MessageSendEventsProvider(&rust_obj);
1268                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
1269                 rust_obj.inner = std::ptr::null_mut();
1270                 ret.free = Some(ChannelManager_free_void);
1271                 ret
1272         }
1273 }
1274 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
1275 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
1276 #[no_mangle]
1277 pub extern "C" fn ChannelManager_as_MessageSendEventsProvider(this_arg: &ChannelManager) -> crate::lightning::util::events::MessageSendEventsProvider {
1278         crate::lightning::util::events::MessageSendEventsProvider {
1279                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1280                 free: None,
1281                 get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
1282         }
1283 }
1284
1285 #[must_use]
1286 extern "C" fn ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
1287         let mut ret = <nativeChannelManager as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1288         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
1289         local_ret.into()
1290 }
1291
1292 impl From<nativeChannelManager> for crate::lightning::util::events::EventsProvider {
1293         fn from(obj: nativeChannelManager) -> Self {
1294                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1295                 let mut ret = ChannelManager_as_EventsProvider(&rust_obj);
1296                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
1297                 rust_obj.inner = std::ptr::null_mut();
1298                 ret.free = Some(ChannelManager_free_void);
1299                 ret
1300         }
1301 }
1302 /// Constructs a new EventsProvider which calls the relevant methods on this_arg.
1303 /// This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
1304 #[no_mangle]
1305 pub extern "C" fn ChannelManager_as_EventsProvider(this_arg: &ChannelManager) -> crate::lightning::util::events::EventsProvider {
1306         crate::lightning::util::events::EventsProvider {
1307                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1308                 free: None,
1309                 process_pending_events: ChannelManager_EventsProvider_process_pending_events,
1310         }
1311 }
1312
1313 extern "C" fn ChannelManager_EventsProvider_process_pending_events(this_arg: *const c_void, mut handler: crate::lightning::util::events::EventHandler) {
1314         <nativeChannelManager as lightning::util::events::EventsProvider<>>::process_pending_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, handler)
1315 }
1316
1317 impl From<nativeChannelManager> for crate::lightning::chain::Listen {
1318         fn from(obj: nativeChannelManager) -> Self {
1319                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1320                 let mut ret = ChannelManager_as_Listen(&rust_obj);
1321                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
1322                 rust_obj.inner = std::ptr::null_mut();
1323                 ret.free = Some(ChannelManager_free_void);
1324                 ret
1325         }
1326 }
1327 /// Constructs a new Listen which calls the relevant methods on this_arg.
1328 /// This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
1329 #[no_mangle]
1330 pub extern "C" fn ChannelManager_as_Listen(this_arg: &ChannelManager) -> crate::lightning::chain::Listen {
1331         crate::lightning::chain::Listen {
1332                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1333                 free: None,
1334                 block_connected: ChannelManager_Listen_block_connected,
1335                 block_disconnected: ChannelManager_Listen_block_disconnected,
1336         }
1337 }
1338
1339 extern "C" fn ChannelManager_Listen_block_connected(this_arg: *const c_void, mut block: crate::c_types::u8slice, mut height: u32) {
1340         <nativeChannelManager as lightning::chain::Listen<>>::block_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(block.to_slice()).unwrap(), height)
1341 }
1342 extern "C" fn ChannelManager_Listen_block_disconnected(this_arg: *const c_void, header: *const [u8; 80], mut height: u32) {
1343         <nativeChannelManager as lightning::chain::Listen<>>::block_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
1344 }
1345
1346 impl From<nativeChannelManager> for crate::lightning::chain::Confirm {
1347         fn from(obj: nativeChannelManager) -> Self {
1348                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1349                 let mut ret = ChannelManager_as_Confirm(&rust_obj);
1350                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
1351                 rust_obj.inner = std::ptr::null_mut();
1352                 ret.free = Some(ChannelManager_free_void);
1353                 ret
1354         }
1355 }
1356 /// Constructs a new Confirm which calls the relevant methods on this_arg.
1357 /// This copies the `inner` pointer in this_arg and thus the returned Confirm must be freed before this_arg is
1358 #[no_mangle]
1359 pub extern "C" fn ChannelManager_as_Confirm(this_arg: &ChannelManager) -> crate::lightning::chain::Confirm {
1360         crate::lightning::chain::Confirm {
1361                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1362                 free: None,
1363                 transactions_confirmed: ChannelManager_Confirm_transactions_confirmed,
1364                 transaction_unconfirmed: ChannelManager_Confirm_transaction_unconfirmed,
1365                 best_block_updated: ChannelManager_Confirm_best_block_updated,
1366                 get_relevant_txids: ChannelManager_Confirm_get_relevant_txids,
1367         }
1368 }
1369
1370 extern "C" fn ChannelManager_Confirm_transactions_confirmed(this_arg: *const c_void, header: *const [u8; 80], mut txdata: crate::c_types::derived::CVec_C2Tuple_usizeTransactionZZ, mut height: u32) {
1371         let mut local_txdata = Vec::new(); for mut item in txdata.into_rust().drain(..) { local_txdata.push( { let (mut orig_txdata_0_0, mut orig_txdata_0_1) = item.to_rust(); let mut local_txdata_0 = (orig_txdata_0_0, orig_txdata_0_1.into_bitcoin()); local_txdata_0 }); };
1372         <nativeChannelManager as lightning::chain::Confirm<>>::transactions_confirmed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), &local_txdata.iter().map(|(a, b)| (*a, b)).collect::<Vec<_>>()[..], height)
1373 }
1374 extern "C" fn ChannelManager_Confirm_best_block_updated(this_arg: *const c_void, header: *const [u8; 80], mut height: u32) {
1375         <nativeChannelManager as lightning::chain::Confirm<>>::best_block_updated(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
1376 }
1377 #[must_use]
1378 extern "C" fn ChannelManager_Confirm_get_relevant_txids(this_arg: *const c_void) -> crate::c_types::derived::CVec_TxidZ {
1379         let mut ret = <nativeChannelManager as lightning::chain::Confirm<>>::get_relevant_txids(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1380         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::c_types::ThirtyTwoBytes { data: item.into_inner() } }); };
1381         local_ret.into()
1382 }
1383 extern "C" fn ChannelManager_Confirm_transaction_unconfirmed(this_arg: *const c_void, txid: *const [u8; 32]) {
1384         <nativeChannelManager as lightning::chain::Confirm<>>::transaction_unconfirmed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::hash_types::Txid::from_slice(&unsafe { &*txid }[..]).unwrap())
1385 }
1386
1387 /// Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
1388 /// indicating whether persistence is necessary. Only one listener on
1389 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
1390 /// up.
1391 /// Note that the feature `allow_wallclock_use` must be enabled to use this function.
1392 #[must_use]
1393 #[no_mangle]
1394 pub extern "C" fn ChannelManager_await_persistable_update_timeout(this_arg: &ChannelManager, mut max_wait: u64) -> bool {
1395         let mut ret = unsafe { &*this_arg.inner }.await_persistable_update_timeout(std::time::Duration::from_secs(max_wait));
1396         ret
1397 }
1398
1399 /// Blocks until ChannelManager needs to be persisted. Only one listener on
1400 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
1401 /// up.
1402 #[no_mangle]
1403 pub extern "C" fn ChannelManager_await_persistable_update(this_arg: &ChannelManager) {
1404         unsafe { &*this_arg.inner }.await_persistable_update()
1405 }
1406
1407 /// Gets the latest best block which was connected either via the [`chain::Listen`] or
1408 /// [`chain::Confirm`] interfaces.
1409 #[must_use]
1410 #[no_mangle]
1411 pub extern "C" fn ChannelManager_current_best_block(this_arg: &ChannelManager) -> crate::lightning::chain::BestBlock {
1412         let mut ret = unsafe { &*this_arg.inner }.current_best_block();
1413         crate::lightning::chain::BestBlock { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1414 }
1415
1416 impl From<nativeChannelManager> for crate::lightning::ln::msgs::ChannelMessageHandler {
1417         fn from(obj: nativeChannelManager) -> Self {
1418                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1419                 let mut ret = ChannelManager_as_ChannelMessageHandler(&rust_obj);
1420                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
1421                 rust_obj.inner = std::ptr::null_mut();
1422                 ret.free = Some(ChannelManager_free_void);
1423                 ret
1424         }
1425 }
1426 /// Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
1427 /// This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
1428 #[no_mangle]
1429 pub extern "C" fn ChannelManager_as_ChannelMessageHandler(this_arg: &ChannelManager) -> crate::lightning::ln::msgs::ChannelMessageHandler {
1430         crate::lightning::ln::msgs::ChannelMessageHandler {
1431                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1432                 free: None,
1433                 handle_open_channel: ChannelManager_ChannelMessageHandler_handle_open_channel,
1434                 handle_accept_channel: ChannelManager_ChannelMessageHandler_handle_accept_channel,
1435                 handle_funding_created: ChannelManager_ChannelMessageHandler_handle_funding_created,
1436                 handle_funding_signed: ChannelManager_ChannelMessageHandler_handle_funding_signed,
1437                 handle_funding_locked: ChannelManager_ChannelMessageHandler_handle_funding_locked,
1438                 handle_shutdown: ChannelManager_ChannelMessageHandler_handle_shutdown,
1439                 handle_closing_signed: ChannelManager_ChannelMessageHandler_handle_closing_signed,
1440                 handle_update_add_htlc: ChannelManager_ChannelMessageHandler_handle_update_add_htlc,
1441                 handle_update_fulfill_htlc: ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc,
1442                 handle_update_fail_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_htlc,
1443                 handle_update_fail_malformed_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc,
1444                 handle_commitment_signed: ChannelManager_ChannelMessageHandler_handle_commitment_signed,
1445                 handle_revoke_and_ack: ChannelManager_ChannelMessageHandler_handle_revoke_and_ack,
1446                 handle_update_fee: ChannelManager_ChannelMessageHandler_handle_update_fee,
1447                 handle_announcement_signatures: ChannelManager_ChannelMessageHandler_handle_announcement_signatures,
1448                 peer_disconnected: ChannelManager_ChannelMessageHandler_peer_disconnected,
1449                 peer_connected: ChannelManager_ChannelMessageHandler_peer_connected,
1450                 handle_channel_reestablish: ChannelManager_ChannelMessageHandler_handle_channel_reestablish,
1451                 handle_channel_update: ChannelManager_ChannelMessageHandler_handle_channel_update,
1452                 handle_error: ChannelManager_ChannelMessageHandler_handle_error,
1453                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
1454                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
1455                         free: None,
1456                         get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
1457                 },
1458         }
1459 }
1460
1461 extern "C" fn ChannelManager_ChannelMessageHandler_handle_open_channel(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, mut their_features: crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::OpenChannel) {
1462         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_open_channel(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), *unsafe { Box::from_raw(their_features.take_inner()) }, unsafe { &*msg.inner })
1463 }
1464 extern "C" fn ChannelManager_ChannelMessageHandler_handle_accept_channel(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, mut their_features: crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::AcceptChannel) {
1465         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_accept_channel(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), *unsafe { Box::from_raw(their_features.take_inner()) }, unsafe { &*msg.inner })
1466 }
1467 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_created(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingCreated) {
1468         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_created(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1469 }
1470 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingSigned) {
1471         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1472 }
1473 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_locked(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingLocked) {
1474         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_locked(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1475 }
1476 extern "C" fn ChannelManager_ChannelMessageHandler_handle_shutdown(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, their_features: &crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::Shutdown) {
1477         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_shutdown(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*their_features.inner }, unsafe { &*msg.inner })
1478 }
1479 extern "C" fn ChannelManager_ChannelMessageHandler_handle_closing_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ClosingSigned) {
1480         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_closing_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1481 }
1482 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_add_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateAddHTLC) {
1483         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_add_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1484 }
1485 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFulfillHTLC) {
1486         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fulfill_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1487 }
1488 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fail_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailHTLC) {
1489         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1490 }
1491 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailMalformedHTLC) {
1492         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_malformed_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1493 }
1494 extern "C" fn ChannelManager_ChannelMessageHandler_handle_commitment_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::CommitmentSigned) {
1495         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_commitment_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1496 }
1497 extern "C" fn ChannelManager_ChannelMessageHandler_handle_revoke_and_ack(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::RevokeAndACK) {
1498         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_revoke_and_ack(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1499 }
1500 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fee(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFee) {
1501         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fee(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1502 }
1503 extern "C" fn ChannelManager_ChannelMessageHandler_handle_announcement_signatures(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::AnnouncementSignatures) {
1504         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_announcement_signatures(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1505 }
1506 extern "C" fn ChannelManager_ChannelMessageHandler_handle_channel_update(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ChannelUpdate) {
1507         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1508 }
1509 extern "C" fn ChannelManager_ChannelMessageHandler_handle_channel_reestablish(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ChannelReestablish) {
1510         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_reestablish(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1511 }
1512 extern "C" fn ChannelManager_ChannelMessageHandler_peer_disconnected(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, mut no_connection_possible: bool) {
1513         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), no_connection_possible)
1514 }
1515 extern "C" fn ChannelManager_ChannelMessageHandler_peer_connected(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, init_msg: &crate::lightning::ln::msgs::Init) {
1516         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*init_msg.inner })
1517 }
1518 extern "C" fn ChannelManager_ChannelMessageHandler_handle_error(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ErrorMessage) {
1519         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_error(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1520 }
1521
1522 #[no_mangle]
1523 /// Serialize the ChannelManager object into a byte array which can be read by ChannelManager_read
1524 pub extern "C" fn ChannelManager_write(obj: &ChannelManager) -> crate::c_types::derived::CVec_u8Z {
1525         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1526 }
1527 #[no_mangle]
1528 pub(crate) extern "C" fn ChannelManager_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1529         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelManager) })
1530 }
1531
1532 use lightning::ln::channelmanager::ChannelManagerReadArgs as nativeChannelManagerReadArgsImport;
1533 type nativeChannelManagerReadArgs = nativeChannelManagerReadArgsImport<'static, crate::lightning::chain::keysinterface::Sign, crate::lightning::chain::Watch, crate::lightning::chain::chaininterface::BroadcasterInterface, crate::lightning::chain::keysinterface::KeysInterface, crate::lightning::chain::chaininterface::FeeEstimator, crate::lightning::util::logger::Logger>;
1534
1535 /// Arguments for the creation of a ChannelManager that are not deserialized.
1536 ///
1537 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
1538 /// is:
1539 /// 1) Deserialize all stored ChannelMonitors.
1540 /// 2) Deserialize the ChannelManager by filling in this struct and calling:
1541 ///    <(BlockHash, ChannelManager)>::read(reader, args)
1542 ///    This may result in closing some Channels if the ChannelMonitor is newer than the stored
1543 ///    ChannelManager state to ensure no loss of funds. Thus, transactions may be broadcasted.
1544 /// 3) If you are not fetching full blocks, register all relevant ChannelMonitor outpoints the same
1545 ///    way you would handle a `chain::Filter` call using ChannelMonitor::get_outputs_to_watch() and
1546 ///    ChannelMonitor::get_funding_txo().
1547 /// 4) Reconnect blocks on your ChannelMonitors.
1548 /// 5) Disconnect/connect blocks on the ChannelManager.
1549 /// 6) Move the ChannelMonitors into your local chain::Watch.
1550 ///
1551 /// Note that the ordering of #4-6 is not of importance, however all three must occur before you
1552 /// call any other methods on the newly-deserialized ChannelManager.
1553 ///
1554 /// Note that because some channels may be closed during deserialization, it is critical that you
1555 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
1556 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
1557 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
1558 /// not force-close the same channels but consider them live), you may end up revoking a state for
1559 /// which you've already broadcasted the transaction.
1560 #[must_use]
1561 #[repr(C)]
1562 pub struct ChannelManagerReadArgs {
1563         /// A pointer to the opaque Rust object.
1564
1565         /// Nearly everywhere, inner must be non-null, however in places where
1566         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1567         pub inner: *mut nativeChannelManagerReadArgs,
1568         /// Indicates that this is the only struct which contains the same pointer.
1569
1570         /// Rust functions which take ownership of an object provided via an argument require
1571         /// this to be true and invalidate the object pointed to by inner.
1572         pub is_owned: bool,
1573 }
1574
1575 impl Drop for ChannelManagerReadArgs {
1576         fn drop(&mut self) {
1577                 if self.is_owned && !<*mut nativeChannelManagerReadArgs>::is_null(self.inner) {
1578                         let _ = unsafe { Box::from_raw(self.inner) };
1579                 }
1580         }
1581 }
1582 /// Frees any resources used by the ChannelManagerReadArgs, if is_owned is set and inner is non-NULL.
1583 #[no_mangle]
1584 pub extern "C" fn ChannelManagerReadArgs_free(this_obj: ChannelManagerReadArgs) { }
1585 #[allow(unused)]
1586 /// Used only if an object of this type is returned as a trait impl by a method
1587 extern "C" fn ChannelManagerReadArgs_free_void(this_ptr: *mut c_void) {
1588         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManagerReadArgs); }
1589 }
1590 #[allow(unused)]
1591 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1592 impl ChannelManagerReadArgs {
1593         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManagerReadArgs {
1594                 assert!(self.is_owned);
1595                 let ret = self.inner;
1596                 self.inner = std::ptr::null_mut();
1597                 ret
1598         }
1599 }
1600 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1601 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1602 /// signing data.
1603 #[no_mangle]
1604 pub extern "C" fn ChannelManagerReadArgs_get_keys_manager(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::keysinterface::KeysInterface {
1605         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.keys_manager;
1606         inner_val
1607 }
1608 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1609 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1610 /// signing data.
1611 #[no_mangle]
1612 pub extern "C" fn ChannelManagerReadArgs_set_keys_manager(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::keysinterface::KeysInterface) {
1613         unsafe { &mut *this_ptr.inner }.keys_manager = val;
1614 }
1615 /// The fee_estimator for use in the ChannelManager in the future.
1616 ///
1617 /// No calls to the FeeEstimator will be made during deserialization.
1618 #[no_mangle]
1619 pub extern "C" fn ChannelManagerReadArgs_get_fee_estimator(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::chaininterface::FeeEstimator {
1620         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_estimator;
1621         inner_val
1622 }
1623 /// The fee_estimator for use in the ChannelManager in the future.
1624 ///
1625 /// No calls to the FeeEstimator will be made during deserialization.
1626 #[no_mangle]
1627 pub extern "C" fn ChannelManagerReadArgs_set_fee_estimator(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::chaininterface::FeeEstimator) {
1628         unsafe { &mut *this_ptr.inner }.fee_estimator = val;
1629 }
1630 /// The chain::Watch for use in the ChannelManager in the future.
1631 ///
1632 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1633 /// you have deserialized ChannelMonitors separately and will add them to your
1634 /// chain::Watch after deserializing this ChannelManager.
1635 #[no_mangle]
1636 pub extern "C" fn ChannelManagerReadArgs_get_chain_monitor(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::Watch {
1637         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_monitor;
1638         inner_val
1639 }
1640 /// The chain::Watch for use in the ChannelManager in the future.
1641 ///
1642 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1643 /// you have deserialized ChannelMonitors separately and will add them to your
1644 /// chain::Watch after deserializing this ChannelManager.
1645 #[no_mangle]
1646 pub extern "C" fn ChannelManagerReadArgs_set_chain_monitor(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::Watch) {
1647         unsafe { &mut *this_ptr.inner }.chain_monitor = val;
1648 }
1649 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1650 /// used to broadcast the latest local commitment transactions of channels which must be
1651 /// force-closed during deserialization.
1652 #[no_mangle]
1653 pub extern "C" fn ChannelManagerReadArgs_get_tx_broadcaster(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::chaininterface::BroadcasterInterface {
1654         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.tx_broadcaster;
1655         inner_val
1656 }
1657 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1658 /// used to broadcast the latest local commitment transactions of channels which must be
1659 /// force-closed during deserialization.
1660 #[no_mangle]
1661 pub extern "C" fn ChannelManagerReadArgs_set_tx_broadcaster(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::chaininterface::BroadcasterInterface) {
1662         unsafe { &mut *this_ptr.inner }.tx_broadcaster = val;
1663 }
1664 /// The Logger for use in the ChannelManager and which may be used to log information during
1665 /// deserialization.
1666 #[no_mangle]
1667 pub extern "C" fn ChannelManagerReadArgs_get_logger(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::util::logger::Logger {
1668         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.logger;
1669         inner_val
1670 }
1671 /// The Logger for use in the ChannelManager and which may be used to log information during
1672 /// deserialization.
1673 #[no_mangle]
1674 pub extern "C" fn ChannelManagerReadArgs_set_logger(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::util::logger::Logger) {
1675         unsafe { &mut *this_ptr.inner }.logger = val;
1676 }
1677 /// Default settings used for new channels. Any existing channels will continue to use the
1678 /// runtime settings which were stored when the ChannelManager was serialized.
1679 #[no_mangle]
1680 pub extern "C" fn ChannelManagerReadArgs_get_default_config(this_ptr: &ChannelManagerReadArgs) -> crate::lightning::util::config::UserConfig {
1681         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.default_config;
1682         crate::lightning::util::config::UserConfig { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
1683 }
1684 /// Default settings used for new channels. Any existing channels will continue to use the
1685 /// runtime settings which were stored when the ChannelManager was serialized.
1686 #[no_mangle]
1687 pub extern "C" fn ChannelManagerReadArgs_set_default_config(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::util::config::UserConfig) {
1688         unsafe { &mut *this_ptr.inner }.default_config = *unsafe { Box::from_raw(val.take_inner()) };
1689 }
1690 /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
1691 /// HashMap for you. This is primarily useful for C bindings where it is not practical to
1692 /// populate a HashMap directly from C.
1693 #[must_use]
1694 #[no_mangle]
1695 pub extern "C" fn ChannelManagerReadArgs_new(mut keys_manager: crate::lightning::chain::keysinterface::KeysInterface, mut fee_estimator: crate::lightning::chain::chaininterface::FeeEstimator, mut chain_monitor: crate::lightning::chain::Watch, mut tx_broadcaster: crate::lightning::chain::chaininterface::BroadcasterInterface, mut logger: crate::lightning::util::logger::Logger, mut default_config: crate::lightning::util::config::UserConfig, mut channel_monitors: crate::c_types::derived::CVec_ChannelMonitorZ) -> ChannelManagerReadArgs {
1696         let mut local_channel_monitors = Vec::new(); for mut item in channel_monitors.into_rust().drain(..) { local_channel_monitors.push( { unsafe { &mut *item.inner } }); };
1697         let mut ret = lightning::ln::channelmanager::ChannelManagerReadArgs::new(keys_manager, fee_estimator, chain_monitor, tx_broadcaster, logger, *unsafe { Box::from_raw(default_config.take_inner()) }, local_channel_monitors);
1698         ChannelManagerReadArgs { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1699 }
1700
1701 #[no_mangle]
1702 /// Read a C2Tuple_BlockHashChannelManagerZ from a byte array, created by C2Tuple_BlockHashChannelManagerZ_write
1703 pub extern "C" fn C2Tuple_BlockHashChannelManagerZ_read(ser: crate::c_types::u8slice, arg: crate::lightning::ln::channelmanager::ChannelManagerReadArgs) -> crate::c_types::derived::CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ {
1704         let arg_conv = *unsafe { Box::from_raw(arg.take_inner()) };
1705         let res: Result<(bitcoin::hash_types::BlockHash, lightning::ln::channelmanager::ChannelManager<crate::lightning::chain::keysinterface::Sign, crate::lightning::chain::Watch, crate::lightning::chain::chaininterface::BroadcasterInterface, crate::lightning::chain::keysinterface::KeysInterface, crate::lightning::chain::chaininterface::FeeEstimator, crate::lightning::util::logger::Logger>), lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj_arg(ser, arg_conv);
1706         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { let (mut orig_res_0_0, mut orig_res_0_1) = o; let mut local_res_0 = (crate::c_types::ThirtyTwoBytes { data: orig_res_0_0.into_inner() }, crate::lightning::ln::channelmanager::ChannelManager { inner: Box::into_raw(Box::new(orig_res_0_1)), is_owned: true }).into(); local_res_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1707         local_res
1708 }