Update auto-generated bindings
[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 /// Send a spontaneous payment, which is a payment that does not require the recipient to have
1048 /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
1049 /// the preimage, it must be a cryptographically secure random value that no intermediate node
1050 /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
1051 /// never reach the recipient.
1052 ///
1053 /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
1054 /// [`send_payment`] for more information about the risks of duplicate preimage usage.
1055 ///
1056 /// [`send_payment`]: Self::send_payment
1057 #[must_use]
1058 #[no_mangle]
1059 pub extern "C" fn ChannelManager_send_spontaneous_payment(this_arg: &ChannelManager, route: &crate::lightning::routing::router::Route, mut payment_preimage: crate::c_types::ThirtyTwoBytes) -> crate::c_types::derived::CResult_PaymentHashPaymentSendFailureZ {
1060         let mut local_payment_preimage = if payment_preimage.data == [0; 32] { None } else { Some( { ::lightning::ln::PaymentPreimage(payment_preimage.data) }) };
1061         let mut ret = unsafe { &*this_arg.inner }.send_spontaneous_payment(unsafe { &*route.inner }, local_payment_preimage);
1062         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::ln::channelmanager::PaymentSendFailure::native_into(e) }).into() };
1063         local_ret
1064 }
1065
1066 /// Call this upon creation of a funding transaction for the given channel.
1067 ///
1068 /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
1069 /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
1070 ///
1071 /// Panics if a funding transaction has already been provided for this channel.
1072 ///
1073 /// May panic if the output found in the funding transaction is duplicative with some other
1074 /// channel (note that this should be trivially prevented by using unique funding transaction
1075 /// keys per-channel).
1076 ///
1077 /// Do NOT broadcast the funding transaction yourself. When we have safely received our
1078 /// counterparty's signature the funding transaction will automatically be broadcast via the
1079 /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
1080 ///
1081 /// Note that this includes RBF or similar transaction replacement strategies - lightning does
1082 /// not currently support replacing a funding transaction on an existing channel. Instead,
1083 /// create a new channel with a conflicting funding transaction.
1084 ///
1085 /// [`Event::FundingGenerationReady`]: crate::util::events::Event::FundingGenerationReady
1086 #[must_use]
1087 #[no_mangle]
1088 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 {
1089         let mut ret = unsafe { &*this_arg.inner }.funding_transaction_generated(unsafe { &*temporary_channel_id}, funding_transaction.into_bitcoin());
1090         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() };
1091         local_ret
1092 }
1093
1094 /// Regenerates channel_announcements and generates a signed node_announcement from the given
1095 /// arguments, providing them in corresponding events via
1096 /// [`get_and_clear_pending_msg_events`], if at least one public channel has been confirmed
1097 /// on-chain. This effectively re-broadcasts all channel announcements and sends our node
1098 /// announcement to ensure that the lightning P2P network is aware of the channels we have and
1099 /// our network addresses.
1100 ///
1101 /// `rgb` is a node \"color\" and `alias` is a printable human-readable string to describe this
1102 /// node to humans. They carry no in-protocol meaning.
1103 ///
1104 /// `addresses` represent the set (possibly empty) of socket addresses on which this node
1105 /// accepts incoming connections. These will be included in the node_announcement, publicly
1106 /// tying these addresses together and to this node. If you wish to preserve user privacy,
1107 /// addresses should likely contain only Tor Onion addresses.
1108 ///
1109 /// Panics if `addresses` is absurdly large (more than 500).
1110 ///
1111 /// [`get_and_clear_pending_msg_events`]: MessageSendEventsProvider::get_and_clear_pending_msg_events
1112 #[no_mangle]
1113 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) {
1114         let mut local_addresses = Vec::new(); for mut item in addresses.into_rust().drain(..) { local_addresses.push( { item.into_native() }); };
1115         unsafe { &*this_arg.inner }.broadcast_node_announcement(rgb.data, alias.data, local_addresses)
1116 }
1117
1118 /// Processes HTLCs which are pending waiting on random forward delay.
1119 ///
1120 /// Should only really ever be called in response to a PendingHTLCsForwardable event.
1121 /// Will likely generate further events.
1122 #[no_mangle]
1123 pub extern "C" fn ChannelManager_process_pending_htlc_forwards(this_arg: &ChannelManager) {
1124         unsafe { &*this_arg.inner }.process_pending_htlc_forwards()
1125 }
1126
1127 /// If a peer is disconnected we mark any channels with that peer as 'disabled'.
1128 /// After some time, if channels are still disabled we need to broadcast a ChannelUpdate
1129 /// to inform the network about the uselessness of these channels.
1130 ///
1131 /// This method handles all the details, and must be called roughly once per minute.
1132 ///
1133 /// Note that in some rare cases this may generate a `chain::Watch::update_channel` call.
1134 #[no_mangle]
1135 pub extern "C" fn ChannelManager_timer_tick_occurred(this_arg: &ChannelManager) {
1136         unsafe { &*this_arg.inner }.timer_tick_occurred()
1137 }
1138
1139 /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
1140 /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
1141 /// along the path (including in our own channel on which we received it).
1142 /// Returns false if no payment was found to fail backwards, true if the process of failing the
1143 /// HTLC backwards has been started.
1144 #[must_use]
1145 #[no_mangle]
1146 pub extern "C" fn ChannelManager_fail_htlc_backwards(this_arg: &ChannelManager, payment_hash: *const [u8; 32]) -> bool {
1147         let mut ret = unsafe { &*this_arg.inner }.fail_htlc_backwards(&::lightning::ln::PaymentHash(unsafe { *payment_hash }));
1148         ret
1149 }
1150
1151 /// Provides a payment preimage in response to a PaymentReceived event, returning true and
1152 /// generating message events for the net layer to claim the payment, if possible. Thus, you
1153 /// should probably kick the net layer to go send messages if this returns true!
1154 ///
1155 /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
1156 /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentReceived`
1157 /// event matches your expectation. If you fail to do so and call this method, you may provide
1158 /// the sender \"proof-of-payment\" when they did not fulfill the full expected payment.
1159 ///
1160 /// May panic if called except in response to a PaymentReceived event.
1161 ///
1162 /// [`create_inbound_payment`]: Self::create_inbound_payment
1163 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1164 #[must_use]
1165 #[no_mangle]
1166 pub extern "C" fn ChannelManager_claim_funds(this_arg: &ChannelManager, mut payment_preimage: crate::c_types::ThirtyTwoBytes) -> bool {
1167         let mut ret = unsafe { &*this_arg.inner }.claim_funds(::lightning::ln::PaymentPreimage(payment_preimage.data));
1168         ret
1169 }
1170
1171 /// Gets the node_id held by this ChannelManager
1172 #[must_use]
1173 #[no_mangle]
1174 pub extern "C" fn ChannelManager_get_our_node_id(this_arg: &ChannelManager) -> crate::c_types::PublicKey {
1175         let mut ret = unsafe { &*this_arg.inner }.get_our_node_id();
1176         crate::c_types::PublicKey::from_rust(&ret)
1177 }
1178
1179 /// Restores a single, given channel to normal operation after a
1180 /// ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
1181 /// operation.
1182 ///
1183 /// All ChannelMonitor updates up to and including highest_applied_update_id must have been
1184 /// fully committed in every copy of the given channels' ChannelMonitors.
1185 ///
1186 /// Note that there is no effect to calling with a highest_applied_update_id other than the
1187 /// current latest ChannelMonitorUpdate and one call to this function after multiple
1188 /// ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
1189 /// exists largely only to prevent races between this and concurrent update_monitor calls.
1190 ///
1191 /// Thus, the anticipated use is, at a high level:
1192 ///  1) You register a chain::Watch with this ChannelManager,
1193 ///  2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
1194 ///     said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
1195 ///     any time it cannot do so instantly,
1196 ///  3) update(s) are applied to each remote copy of a ChannelMonitor,
1197 ///  4) once all remote copies are updated, you call this function with the update_id that
1198 ///     completed, and once it is the latest the Channel will be re-enabled.
1199 #[no_mangle]
1200 pub extern "C" fn ChannelManager_channel_monitor_updated(this_arg: &ChannelManager, funding_txo: &crate::lightning::chain::transaction::OutPoint, mut highest_applied_update_id: u64) {
1201         unsafe { &*this_arg.inner }.channel_monitor_updated(unsafe { &*funding_txo.inner }, highest_applied_update_id)
1202 }
1203
1204 /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
1205 /// to pay us.
1206 ///
1207 /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
1208 /// [`PaymentHash`] and [`PaymentPreimage`] for you, returning the first and storing the second.
1209 ///
1210 /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentReceived`], which
1211 /// will have the [`PaymentReceived::payment_preimage`] field filled in. That should then be
1212 /// passed directly to [`claim_funds`].
1213 ///
1214 /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
1215 ///
1216 /// [`claim_funds`]: Self::claim_funds
1217 /// [`PaymentReceived`]: events::Event::PaymentReceived
1218 /// [`PaymentReceived::payment_preimage`]: events::Event::PaymentReceived::payment_preimage
1219 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1220 #[must_use]
1221 #[no_mangle]
1222 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 {
1223         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1224         let mut ret = unsafe { &*this_arg.inner }.create_inbound_payment(local_min_value_msat, invoice_expiry_delta_secs, user_payment_id);
1225         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();
1226         local_ret
1227 }
1228
1229 /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
1230 /// stored external to LDK.
1231 ///
1232 /// A [`PaymentReceived`] event will only be generated if the [`PaymentSecret`] matches a
1233 /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
1234 /// the `min_value_msat` provided here, if one is provided.
1235 ///
1236 /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) must be globally unique. This
1237 /// method may return an Err if another payment with the same payment_hash is still pending.
1238 ///
1239 /// `user_payment_id` will be provided back in [`PaymentPurpose::InvoicePayment::user_payment_id`] events to
1240 /// allow tracking of which events correspond with which calls to this and
1241 /// [`create_inbound_payment`]. `user_payment_id` has no meaning inside of LDK, it is simply
1242 /// copied to events and otherwise ignored. It may be used to correlate PaymentReceived events
1243 /// with invoice metadata stored elsewhere.
1244 ///
1245 /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
1246 /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
1247 /// before a [`PaymentReceived`] event will be generated, ensuring that we do not provide the
1248 /// sender \"proof-of-payment\" unless they have paid the required amount.
1249 ///
1250 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
1251 /// in excess of the current time. This should roughly match the expiry time set in the invoice.
1252 /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
1253 /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
1254 /// invoices when no timeout is set.
1255 ///
1256 /// Note that we use block header time to time-out pending inbound payments (with some margin
1257 /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
1258 /// accept a payment and generate a [`PaymentReceived`] event for some time after the expiry.
1259 /// If you need exact expiry semantics, you should enforce them upon receipt of
1260 /// [`PaymentReceived`].
1261 ///
1262 /// Pending inbound payments are stored in memory and in serialized versions of this
1263 /// [`ChannelManager`]. If potentially unbounded numbers of inbound payments may exist and
1264 /// space is limited, you may wish to rate-limit inbound payment creation.
1265 ///
1266 /// May panic if `invoice_expiry_delta_secs` is greater than one year.
1267 ///
1268 /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry`
1269 /// set to at least [`MIN_FINAL_CLTV_EXPIRY`].
1270 ///
1271 /// [`create_inbound_payment`]: Self::create_inbound_payment
1272 /// [`PaymentReceived`]: events::Event::PaymentReceived
1273 /// [`PaymentPurpose::InvoicePayment::user_payment_id`]: events::PaymentPurpose::InvoicePayment::user_payment_id
1274 #[must_use]
1275 #[no_mangle]
1276 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 {
1277         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1278         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);
1279         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() };
1280         local_ret
1281 }
1282
1283 impl From<nativeChannelManager> for crate::lightning::util::events::MessageSendEventsProvider {
1284         fn from(obj: nativeChannelManager) -> Self {
1285                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1286                 let mut ret = ChannelManager_as_MessageSendEventsProvider(&rust_obj);
1287                 // 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
1288                 rust_obj.inner = std::ptr::null_mut();
1289                 ret.free = Some(ChannelManager_free_void);
1290                 ret
1291         }
1292 }
1293 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
1294 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
1295 #[no_mangle]
1296 pub extern "C" fn ChannelManager_as_MessageSendEventsProvider(this_arg: &ChannelManager) -> crate::lightning::util::events::MessageSendEventsProvider {
1297         crate::lightning::util::events::MessageSendEventsProvider {
1298                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1299                 free: None,
1300                 get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
1301         }
1302 }
1303
1304 #[must_use]
1305 extern "C" fn ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
1306         let mut ret = <nativeChannelManager as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1307         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
1308         local_ret.into()
1309 }
1310
1311 impl From<nativeChannelManager> for crate::lightning::util::events::EventsProvider {
1312         fn from(obj: nativeChannelManager) -> Self {
1313                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1314                 let mut ret = ChannelManager_as_EventsProvider(&rust_obj);
1315                 // 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
1316                 rust_obj.inner = std::ptr::null_mut();
1317                 ret.free = Some(ChannelManager_free_void);
1318                 ret
1319         }
1320 }
1321 /// Constructs a new EventsProvider which calls the relevant methods on this_arg.
1322 /// This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
1323 #[no_mangle]
1324 pub extern "C" fn ChannelManager_as_EventsProvider(this_arg: &ChannelManager) -> crate::lightning::util::events::EventsProvider {
1325         crate::lightning::util::events::EventsProvider {
1326                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1327                 free: None,
1328                 process_pending_events: ChannelManager_EventsProvider_process_pending_events,
1329         }
1330 }
1331
1332 extern "C" fn ChannelManager_EventsProvider_process_pending_events(this_arg: *const c_void, mut handler: crate::lightning::util::events::EventHandler) {
1333         <nativeChannelManager as lightning::util::events::EventsProvider<>>::process_pending_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, handler)
1334 }
1335
1336 impl From<nativeChannelManager> for crate::lightning::chain::Listen {
1337         fn from(obj: nativeChannelManager) -> Self {
1338                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1339                 let mut ret = ChannelManager_as_Listen(&rust_obj);
1340                 // 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
1341                 rust_obj.inner = std::ptr::null_mut();
1342                 ret.free = Some(ChannelManager_free_void);
1343                 ret
1344         }
1345 }
1346 /// Constructs a new Listen which calls the relevant methods on this_arg.
1347 /// This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
1348 #[no_mangle]
1349 pub extern "C" fn ChannelManager_as_Listen(this_arg: &ChannelManager) -> crate::lightning::chain::Listen {
1350         crate::lightning::chain::Listen {
1351                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1352                 free: None,
1353                 block_connected: ChannelManager_Listen_block_connected,
1354                 block_disconnected: ChannelManager_Listen_block_disconnected,
1355         }
1356 }
1357
1358 extern "C" fn ChannelManager_Listen_block_connected(this_arg: *const c_void, mut block: crate::c_types::u8slice, mut height: u32) {
1359         <nativeChannelManager as lightning::chain::Listen<>>::block_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(block.to_slice()).unwrap(), height)
1360 }
1361 extern "C" fn ChannelManager_Listen_block_disconnected(this_arg: *const c_void, header: *const [u8; 80], mut height: u32) {
1362         <nativeChannelManager as lightning::chain::Listen<>>::block_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
1363 }
1364
1365 impl From<nativeChannelManager> for crate::lightning::chain::Confirm {
1366         fn from(obj: nativeChannelManager) -> Self {
1367                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1368                 let mut ret = ChannelManager_as_Confirm(&rust_obj);
1369                 // 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
1370                 rust_obj.inner = std::ptr::null_mut();
1371                 ret.free = Some(ChannelManager_free_void);
1372                 ret
1373         }
1374 }
1375 /// Constructs a new Confirm which calls the relevant methods on this_arg.
1376 /// This copies the `inner` pointer in this_arg and thus the returned Confirm must be freed before this_arg is
1377 #[no_mangle]
1378 pub extern "C" fn ChannelManager_as_Confirm(this_arg: &ChannelManager) -> crate::lightning::chain::Confirm {
1379         crate::lightning::chain::Confirm {
1380                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1381                 free: None,
1382                 transactions_confirmed: ChannelManager_Confirm_transactions_confirmed,
1383                 transaction_unconfirmed: ChannelManager_Confirm_transaction_unconfirmed,
1384                 best_block_updated: ChannelManager_Confirm_best_block_updated,
1385                 get_relevant_txids: ChannelManager_Confirm_get_relevant_txids,
1386         }
1387 }
1388
1389 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) {
1390         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 }); };
1391         <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)
1392 }
1393 extern "C" fn ChannelManager_Confirm_best_block_updated(this_arg: *const c_void, header: *const [u8; 80], mut height: u32) {
1394         <nativeChannelManager as lightning::chain::Confirm<>>::best_block_updated(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
1395 }
1396 #[must_use]
1397 extern "C" fn ChannelManager_Confirm_get_relevant_txids(this_arg: *const c_void) -> crate::c_types::derived::CVec_TxidZ {
1398         let mut ret = <nativeChannelManager as lightning::chain::Confirm<>>::get_relevant_txids(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1399         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::c_types::ThirtyTwoBytes { data: item.into_inner() } }); };
1400         local_ret.into()
1401 }
1402 extern "C" fn ChannelManager_Confirm_transaction_unconfirmed(this_arg: *const c_void, txid: *const [u8; 32]) {
1403         <nativeChannelManager as lightning::chain::Confirm<>>::transaction_unconfirmed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::hash_types::Txid::from_slice(&unsafe { &*txid }[..]).unwrap())
1404 }
1405
1406 /// Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
1407 /// indicating whether persistence is necessary. Only one listener on
1408 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
1409 /// up.
1410 /// Note that the feature `allow_wallclock_use` must be enabled to use this function.
1411 #[must_use]
1412 #[no_mangle]
1413 pub extern "C" fn ChannelManager_await_persistable_update_timeout(this_arg: &ChannelManager, mut max_wait: u64) -> bool {
1414         let mut ret = unsafe { &*this_arg.inner }.await_persistable_update_timeout(std::time::Duration::from_secs(max_wait));
1415         ret
1416 }
1417
1418 /// Blocks until ChannelManager needs to be persisted. Only one listener on
1419 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
1420 /// up.
1421 #[no_mangle]
1422 pub extern "C" fn ChannelManager_await_persistable_update(this_arg: &ChannelManager) {
1423         unsafe { &*this_arg.inner }.await_persistable_update()
1424 }
1425
1426 /// Gets the latest best block which was connected either via the [`chain::Listen`] or
1427 /// [`chain::Confirm`] interfaces.
1428 #[must_use]
1429 #[no_mangle]
1430 pub extern "C" fn ChannelManager_current_best_block(this_arg: &ChannelManager) -> crate::lightning::chain::BestBlock {
1431         let mut ret = unsafe { &*this_arg.inner }.current_best_block();
1432         crate::lightning::chain::BestBlock { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1433 }
1434
1435 impl From<nativeChannelManager> for crate::lightning::ln::msgs::ChannelMessageHandler {
1436         fn from(obj: nativeChannelManager) -> Self {
1437                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1438                 let mut ret = ChannelManager_as_ChannelMessageHandler(&rust_obj);
1439                 // 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
1440                 rust_obj.inner = std::ptr::null_mut();
1441                 ret.free = Some(ChannelManager_free_void);
1442                 ret
1443         }
1444 }
1445 /// Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
1446 /// This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
1447 #[no_mangle]
1448 pub extern "C" fn ChannelManager_as_ChannelMessageHandler(this_arg: &ChannelManager) -> crate::lightning::ln::msgs::ChannelMessageHandler {
1449         crate::lightning::ln::msgs::ChannelMessageHandler {
1450                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1451                 free: None,
1452                 handle_open_channel: ChannelManager_ChannelMessageHandler_handle_open_channel,
1453                 handle_accept_channel: ChannelManager_ChannelMessageHandler_handle_accept_channel,
1454                 handle_funding_created: ChannelManager_ChannelMessageHandler_handle_funding_created,
1455                 handle_funding_signed: ChannelManager_ChannelMessageHandler_handle_funding_signed,
1456                 handle_funding_locked: ChannelManager_ChannelMessageHandler_handle_funding_locked,
1457                 handle_shutdown: ChannelManager_ChannelMessageHandler_handle_shutdown,
1458                 handle_closing_signed: ChannelManager_ChannelMessageHandler_handle_closing_signed,
1459                 handle_update_add_htlc: ChannelManager_ChannelMessageHandler_handle_update_add_htlc,
1460                 handle_update_fulfill_htlc: ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc,
1461                 handle_update_fail_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_htlc,
1462                 handle_update_fail_malformed_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc,
1463                 handle_commitment_signed: ChannelManager_ChannelMessageHandler_handle_commitment_signed,
1464                 handle_revoke_and_ack: ChannelManager_ChannelMessageHandler_handle_revoke_and_ack,
1465                 handle_update_fee: ChannelManager_ChannelMessageHandler_handle_update_fee,
1466                 handle_announcement_signatures: ChannelManager_ChannelMessageHandler_handle_announcement_signatures,
1467                 peer_disconnected: ChannelManager_ChannelMessageHandler_peer_disconnected,
1468                 peer_connected: ChannelManager_ChannelMessageHandler_peer_connected,
1469                 handle_channel_reestablish: ChannelManager_ChannelMessageHandler_handle_channel_reestablish,
1470                 handle_channel_update: ChannelManager_ChannelMessageHandler_handle_channel_update,
1471                 handle_error: ChannelManager_ChannelMessageHandler_handle_error,
1472                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
1473                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
1474                         free: None,
1475                         get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
1476                 },
1477         }
1478 }
1479
1480 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) {
1481         <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 })
1482 }
1483 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) {
1484         <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 })
1485 }
1486 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) {
1487         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_created(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1488 }
1489 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) {
1490         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1491 }
1492 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) {
1493         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_locked(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1494 }
1495 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) {
1496         <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 })
1497 }
1498 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) {
1499         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_closing_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1500 }
1501 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) {
1502         <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 })
1503 }
1504 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) {
1505         <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 })
1506 }
1507 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) {
1508         <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 })
1509 }
1510 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) {
1511         <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 })
1512 }
1513 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) {
1514         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_commitment_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1515 }
1516 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) {
1517         <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 })
1518 }
1519 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) {
1520         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fee(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1521 }
1522 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) {
1523         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_announcement_signatures(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1524 }
1525 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) {
1526         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1527 }
1528 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) {
1529         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_reestablish(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1530 }
1531 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) {
1532         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), no_connection_possible)
1533 }
1534 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) {
1535         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*init_msg.inner })
1536 }
1537 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) {
1538         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_error(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1539 }
1540
1541 #[no_mangle]
1542 /// Serialize the ChannelManager object into a byte array which can be read by ChannelManager_read
1543 pub extern "C" fn ChannelManager_write(obj: &ChannelManager) -> crate::c_types::derived::CVec_u8Z {
1544         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1545 }
1546 #[no_mangle]
1547 pub(crate) extern "C" fn ChannelManager_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1548         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelManager) })
1549 }
1550
1551 use lightning::ln::channelmanager::ChannelManagerReadArgs as nativeChannelManagerReadArgsImport;
1552 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>;
1553
1554 /// Arguments for the creation of a ChannelManager that are not deserialized.
1555 ///
1556 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
1557 /// is:
1558 /// 1) Deserialize all stored ChannelMonitors.
1559 /// 2) Deserialize the ChannelManager by filling in this struct and calling:
1560 ///    <(BlockHash, ChannelManager)>::read(reader, args)
1561 ///    This may result in closing some Channels if the ChannelMonitor is newer than the stored
1562 ///    ChannelManager state to ensure no loss of funds. Thus, transactions may be broadcasted.
1563 /// 3) If you are not fetching full blocks, register all relevant ChannelMonitor outpoints the same
1564 ///    way you would handle a `chain::Filter` call using ChannelMonitor::get_outputs_to_watch() and
1565 ///    ChannelMonitor::get_funding_txo().
1566 /// 4) Reconnect blocks on your ChannelMonitors.
1567 /// 5) Disconnect/connect blocks on the ChannelManager.
1568 /// 6) Move the ChannelMonitors into your local chain::Watch.
1569 ///
1570 /// Note that the ordering of #4-6 is not of importance, however all three must occur before you
1571 /// call any other methods on the newly-deserialized ChannelManager.
1572 ///
1573 /// Note that because some channels may be closed during deserialization, it is critical that you
1574 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
1575 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
1576 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
1577 /// not force-close the same channels but consider them live), you may end up revoking a state for
1578 /// which you've already broadcasted the transaction.
1579 #[must_use]
1580 #[repr(C)]
1581 pub struct ChannelManagerReadArgs {
1582         /// A pointer to the opaque Rust object.
1583
1584         /// Nearly everywhere, inner must be non-null, however in places where
1585         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1586         pub inner: *mut nativeChannelManagerReadArgs,
1587         /// Indicates that this is the only struct which contains the same pointer.
1588
1589         /// Rust functions which take ownership of an object provided via an argument require
1590         /// this to be true and invalidate the object pointed to by inner.
1591         pub is_owned: bool,
1592 }
1593
1594 impl Drop for ChannelManagerReadArgs {
1595         fn drop(&mut self) {
1596                 if self.is_owned && !<*mut nativeChannelManagerReadArgs>::is_null(self.inner) {
1597                         let _ = unsafe { Box::from_raw(self.inner) };
1598                 }
1599         }
1600 }
1601 /// Frees any resources used by the ChannelManagerReadArgs, if is_owned is set and inner is non-NULL.
1602 #[no_mangle]
1603 pub extern "C" fn ChannelManagerReadArgs_free(this_obj: ChannelManagerReadArgs) { }
1604 #[allow(unused)]
1605 /// Used only if an object of this type is returned as a trait impl by a method
1606 extern "C" fn ChannelManagerReadArgs_free_void(this_ptr: *mut c_void) {
1607         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManagerReadArgs); }
1608 }
1609 #[allow(unused)]
1610 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1611 impl ChannelManagerReadArgs {
1612         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManagerReadArgs {
1613                 assert!(self.is_owned);
1614                 let ret = self.inner;
1615                 self.inner = std::ptr::null_mut();
1616                 ret
1617         }
1618 }
1619 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1620 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1621 /// signing data.
1622 #[no_mangle]
1623 pub extern "C" fn ChannelManagerReadArgs_get_keys_manager(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::keysinterface::KeysInterface {
1624         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.keys_manager;
1625         inner_val
1626 }
1627 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1628 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1629 /// signing data.
1630 #[no_mangle]
1631 pub extern "C" fn ChannelManagerReadArgs_set_keys_manager(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::keysinterface::KeysInterface) {
1632         unsafe { &mut *this_ptr.inner }.keys_manager = val;
1633 }
1634 /// The fee_estimator for use in the ChannelManager in the future.
1635 ///
1636 /// No calls to the FeeEstimator will be made during deserialization.
1637 #[no_mangle]
1638 pub extern "C" fn ChannelManagerReadArgs_get_fee_estimator(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::chaininterface::FeeEstimator {
1639         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_estimator;
1640         inner_val
1641 }
1642 /// The fee_estimator for use in the ChannelManager in the future.
1643 ///
1644 /// No calls to the FeeEstimator will be made during deserialization.
1645 #[no_mangle]
1646 pub extern "C" fn ChannelManagerReadArgs_set_fee_estimator(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::chaininterface::FeeEstimator) {
1647         unsafe { &mut *this_ptr.inner }.fee_estimator = val;
1648 }
1649 /// The chain::Watch for use in the ChannelManager in the future.
1650 ///
1651 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1652 /// you have deserialized ChannelMonitors separately and will add them to your
1653 /// chain::Watch after deserializing this ChannelManager.
1654 #[no_mangle]
1655 pub extern "C" fn ChannelManagerReadArgs_get_chain_monitor(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::Watch {
1656         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_monitor;
1657         inner_val
1658 }
1659 /// The chain::Watch for use in the ChannelManager in the future.
1660 ///
1661 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1662 /// you have deserialized ChannelMonitors separately and will add them to your
1663 /// chain::Watch after deserializing this ChannelManager.
1664 #[no_mangle]
1665 pub extern "C" fn ChannelManagerReadArgs_set_chain_monitor(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::Watch) {
1666         unsafe { &mut *this_ptr.inner }.chain_monitor = val;
1667 }
1668 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1669 /// used to broadcast the latest local commitment transactions of channels which must be
1670 /// force-closed during deserialization.
1671 #[no_mangle]
1672 pub extern "C" fn ChannelManagerReadArgs_get_tx_broadcaster(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::chaininterface::BroadcasterInterface {
1673         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.tx_broadcaster;
1674         inner_val
1675 }
1676 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1677 /// used to broadcast the latest local commitment transactions of channels which must be
1678 /// force-closed during deserialization.
1679 #[no_mangle]
1680 pub extern "C" fn ChannelManagerReadArgs_set_tx_broadcaster(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::chaininterface::BroadcasterInterface) {
1681         unsafe { &mut *this_ptr.inner }.tx_broadcaster = val;
1682 }
1683 /// The Logger for use in the ChannelManager and which may be used to log information during
1684 /// deserialization.
1685 #[no_mangle]
1686 pub extern "C" fn ChannelManagerReadArgs_get_logger(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::util::logger::Logger {
1687         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.logger;
1688         inner_val
1689 }
1690 /// The Logger for use in the ChannelManager and which may be used to log information during
1691 /// deserialization.
1692 #[no_mangle]
1693 pub extern "C" fn ChannelManagerReadArgs_set_logger(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::util::logger::Logger) {
1694         unsafe { &mut *this_ptr.inner }.logger = val;
1695 }
1696 /// Default settings used for new channels. Any existing channels will continue to use the
1697 /// runtime settings which were stored when the ChannelManager was serialized.
1698 #[no_mangle]
1699 pub extern "C" fn ChannelManagerReadArgs_get_default_config(this_ptr: &ChannelManagerReadArgs) -> crate::lightning::util::config::UserConfig {
1700         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.default_config;
1701         crate::lightning::util::config::UserConfig { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
1702 }
1703 /// Default settings used for new channels. Any existing channels will continue to use the
1704 /// runtime settings which were stored when the ChannelManager was serialized.
1705 #[no_mangle]
1706 pub extern "C" fn ChannelManagerReadArgs_set_default_config(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::util::config::UserConfig) {
1707         unsafe { &mut *this_ptr.inner }.default_config = *unsafe { Box::from_raw(val.take_inner()) };
1708 }
1709 /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
1710 /// HashMap for you. This is primarily useful for C bindings where it is not practical to
1711 /// populate a HashMap directly from C.
1712 #[must_use]
1713 #[no_mangle]
1714 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 {
1715         let mut local_channel_monitors = Vec::new(); for mut item in channel_monitors.into_rust().drain(..) { local_channel_monitors.push( { unsafe { &mut *item.inner } }); };
1716         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);
1717         ChannelManagerReadArgs { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1718 }
1719
1720 #[no_mangle]
1721 /// Read a C2Tuple_BlockHashChannelManagerZ from a byte array, created by C2Tuple_BlockHashChannelManagerZ_write
1722 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 {
1723         let arg_conv = *unsafe { Box::from_raw(arg.take_inner()) };
1724         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);
1725         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() };
1726         local_res
1727 }