Merge pull request #60 from TheBlueMatt/main
[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 alloc::str::FromStr;
21 use core::ffi::c_void;
22 use core::convert::Infallible;
23 use bitcoin::hashes::Hash;
24 use crate::c_types::*;
25 #[cfg(feature="no-std")]
26 use alloc::{vec::Vec, boxed::Box};
27
28 mod inbound_payment {
29
30 use alloc::str::FromStr;
31 use core::ffi::c_void;
32 use core::convert::Infallible;
33 use bitcoin::hashes::Hash;
34 use crate::c_types::*;
35 #[cfg(feature="no-std")]
36 use alloc::{vec::Vec, boxed::Box};
37
38 }
39
40 use lightning::ln::channelmanager::ChannelManager as nativeChannelManagerImport;
41 pub(crate) 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>;
42
43 /// Manager which keeps track of a number of channels and sends messages to the appropriate
44 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
45 ///
46 /// Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
47 /// to individual Channels.
48 ///
49 /// Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
50 /// all peers during write/read (though does not modify this instance, only the instance being
51 /// serialized). This will result in any channels which have not yet exchanged funding_created (ie
52 /// called funding_transaction_generated for outbound channels).
53 ///
54 /// Note that you can be a bit lazier about writing out ChannelManager than you can be with
55 /// ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
56 /// returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
57 /// happens out-of-band (and will prevent any other ChannelManager operations from occurring during
58 /// the serialization process). If the deserialized version is out-of-date compared to the
59 /// ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
60 /// ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
61 ///
62 /// Note that the deserializer is only implemented for (BlockHash, ChannelManager), which
63 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
64 /// the \"reorg path\" (ie call block_disconnected() until you get to a common block and then call
65 /// block_connected() to step towards your best block) upon deserialization before using the
66 /// object!
67 ///
68 /// Note that ChannelManager is responsible for tracking liveness of its channels and generating
69 /// ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
70 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
71 /// offline for a full minute. In order to track this, you must call
72 /// timer_tick_occurred roughly once per minute, though it doesn't have to be perfect.
73 ///
74 /// Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
75 /// a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
76 /// essentially you should default to using a SimpleRefChannelManager, and use a
77 /// SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
78 /// you're using lightning-net-tokio.
79 #[must_use]
80 #[repr(C)]
81 pub struct ChannelManager {
82         /// A pointer to the opaque Rust object.
83
84         /// Nearly everywhere, inner must be non-null, however in places where
85         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
86         pub inner: *mut nativeChannelManager,
87         /// Indicates that this is the only struct which contains the same pointer.
88
89         /// Rust functions which take ownership of an object provided via an argument require
90         /// this to be true and invalidate the object pointed to by inner.
91         pub is_owned: bool,
92 }
93
94 impl Drop for ChannelManager {
95         fn drop(&mut self) {
96                 if self.is_owned && !<*mut nativeChannelManager>::is_null(self.inner) {
97                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
98                 }
99         }
100 }
101 /// Frees any resources used by the ChannelManager, if is_owned is set and inner is non-NULL.
102 #[no_mangle]
103 pub extern "C" fn ChannelManager_free(this_obj: ChannelManager) { }
104 #[allow(unused)]
105 /// Used only if an object of this type is returned as a trait impl by a method
106 pub(crate) extern "C" fn ChannelManager_free_void(this_ptr: *mut c_void) {
107         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManager); }
108 }
109 #[allow(unused)]
110 impl ChannelManager {
111         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelManager {
112                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
113         }
114         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelManager {
115                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
116         }
117         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
118         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManager {
119                 assert!(self.is_owned);
120                 let ret = ObjOps::untweak_ptr(self.inner);
121                 self.inner = core::ptr::null_mut();
122                 ret
123         }
124 }
125
126 use lightning::ln::channelmanager::ChainParameters as nativeChainParametersImport;
127 pub(crate) type nativeChainParameters = nativeChainParametersImport;
128
129 /// Chain-related parameters used to construct a new `ChannelManager`.
130 ///
131 /// Typically, the block-specific parameters are derived from the best block hash for the network,
132 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
133 /// are not needed when deserializing a previously constructed `ChannelManager`.
134 #[must_use]
135 #[repr(C)]
136 pub struct ChainParameters {
137         /// A pointer to the opaque Rust object.
138
139         /// Nearly everywhere, inner must be non-null, however in places where
140         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
141         pub inner: *mut nativeChainParameters,
142         /// Indicates that this is the only struct which contains the same pointer.
143
144         /// Rust functions which take ownership of an object provided via an argument require
145         /// this to be true and invalidate the object pointed to by inner.
146         pub is_owned: bool,
147 }
148
149 impl Drop for ChainParameters {
150         fn drop(&mut self) {
151                 if self.is_owned && !<*mut nativeChainParameters>::is_null(self.inner) {
152                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
153                 }
154         }
155 }
156 /// Frees any resources used by the ChainParameters, if is_owned is set and inner is non-NULL.
157 #[no_mangle]
158 pub extern "C" fn ChainParameters_free(this_obj: ChainParameters) { }
159 #[allow(unused)]
160 /// Used only if an object of this type is returned as a trait impl by a method
161 pub(crate) extern "C" fn ChainParameters_free_void(this_ptr: *mut c_void) {
162         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChainParameters); }
163 }
164 #[allow(unused)]
165 impl ChainParameters {
166         pub(crate) fn get_native_ref(&self) -> &'static nativeChainParameters {
167                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
168         }
169         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChainParameters {
170                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
171         }
172         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
173         pub(crate) fn take_inner(mut self) -> *mut nativeChainParameters {
174                 assert!(self.is_owned);
175                 let ret = ObjOps::untweak_ptr(self.inner);
176                 self.inner = core::ptr::null_mut();
177                 ret
178         }
179 }
180 /// The network for determining the `chain_hash` in Lightning messages.
181 #[no_mangle]
182 pub extern "C" fn ChainParameters_get_network(this_ptr: &ChainParameters) -> crate::bitcoin::network::Network {
183         let mut inner_val = &mut this_ptr.get_native_mut_ref().network;
184         crate::bitcoin::network::Network::from_bitcoin(inner_val)
185 }
186 /// The network for determining the `chain_hash` in Lightning messages.
187 #[no_mangle]
188 pub extern "C" fn ChainParameters_set_network(this_ptr: &mut ChainParameters, mut val: crate::bitcoin::network::Network) {
189         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.network = val.into_bitcoin();
190 }
191 /// The hash and height of the latest block successfully connected.
192 ///
193 /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
194 #[no_mangle]
195 pub extern "C" fn ChainParameters_get_best_block(this_ptr: &ChainParameters) -> crate::lightning::chain::BestBlock {
196         let mut inner_val = &mut this_ptr.get_native_mut_ref().best_block;
197         crate::lightning::chain::BestBlock { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::chain::BestBlock<>) as *mut _) }, is_owned: false }
198 }
199 /// The hash and height of the latest block successfully connected.
200 ///
201 /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
202 #[no_mangle]
203 pub extern "C" fn ChainParameters_set_best_block(this_ptr: &mut ChainParameters, mut val: crate::lightning::chain::BestBlock) {
204         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.best_block = *unsafe { Box::from_raw(val.take_inner()) };
205 }
206 /// Constructs a new ChainParameters given each field
207 #[must_use]
208 #[no_mangle]
209 pub extern "C" fn ChainParameters_new(mut network_arg: crate::bitcoin::network::Network, mut best_block_arg: crate::lightning::chain::BestBlock) -> ChainParameters {
210         ChainParameters { inner: ObjOps::heap_alloc(nativeChainParameters {
211                 network: network_arg.into_bitcoin(),
212                 best_block: *unsafe { Box::from_raw(best_block_arg.take_inner()) },
213         }), is_owned: true }
214 }
215 impl Clone for ChainParameters {
216         fn clone(&self) -> Self {
217                 Self {
218                         inner: if <*mut nativeChainParameters>::is_null(self.inner) { core::ptr::null_mut() } else {
219                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
220                         is_owned: true,
221                 }
222         }
223 }
224 #[allow(unused)]
225 /// Used only if an object of this type is returned as a trait impl by a method
226 pub(crate) extern "C" fn ChainParameters_clone_void(this_ptr: *const c_void) -> *mut c_void {
227         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChainParameters)).clone() })) as *mut c_void
228 }
229 #[no_mangle]
230 /// Creates a copy of the ChainParameters
231 pub extern "C" fn ChainParameters_clone(orig: &ChainParameters) -> ChainParameters {
232         orig.clone()
233 }
234 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
235 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
236 ///
237 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
238 ///
239 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
240
241 #[no_mangle]
242 pub static BREAKDOWN_TIMEOUT: u16 = lightning::ln::channelmanager::BREAKDOWN_TIMEOUT;
243 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
244 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
245 ///
246 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
247 ///
248 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
249
250 #[no_mangle]
251 pub static MIN_CLTV_EXPIRY_DELTA: u16 = lightning::ln::channelmanager::MIN_CLTV_EXPIRY_DELTA;
252 /// Minimum CLTV difference between the current block height and received inbound payments.
253 /// Invoices generated for payment to us must set their `min_final_cltv_expiry` field to at least
254 /// this value.
255
256 #[no_mangle]
257 pub static MIN_FINAL_CLTV_EXPIRY: u32 = lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY;
258
259 use lightning::ln::channelmanager::CounterpartyForwardingInfo as nativeCounterpartyForwardingInfoImport;
260 pub(crate) type nativeCounterpartyForwardingInfo = nativeCounterpartyForwardingInfoImport;
261
262 /// Information needed for constructing an invoice route hint for this channel.
263 #[must_use]
264 #[repr(C)]
265 pub struct CounterpartyForwardingInfo {
266         /// A pointer to the opaque Rust object.
267
268         /// Nearly everywhere, inner must be non-null, however in places where
269         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
270         pub inner: *mut nativeCounterpartyForwardingInfo,
271         /// Indicates that this is the only struct which contains the same pointer.
272
273         /// Rust functions which take ownership of an object provided via an argument require
274         /// this to be true and invalidate the object pointed to by inner.
275         pub is_owned: bool,
276 }
277
278 impl Drop for CounterpartyForwardingInfo {
279         fn drop(&mut self) {
280                 if self.is_owned && !<*mut nativeCounterpartyForwardingInfo>::is_null(self.inner) {
281                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
282                 }
283         }
284 }
285 /// Frees any resources used by the CounterpartyForwardingInfo, if is_owned is set and inner is non-NULL.
286 #[no_mangle]
287 pub extern "C" fn CounterpartyForwardingInfo_free(this_obj: CounterpartyForwardingInfo) { }
288 #[allow(unused)]
289 /// Used only if an object of this type is returned as a trait impl by a method
290 pub(crate) extern "C" fn CounterpartyForwardingInfo_free_void(this_ptr: *mut c_void) {
291         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeCounterpartyForwardingInfo); }
292 }
293 #[allow(unused)]
294 impl CounterpartyForwardingInfo {
295         pub(crate) fn get_native_ref(&self) -> &'static nativeCounterpartyForwardingInfo {
296                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
297         }
298         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeCounterpartyForwardingInfo {
299                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
300         }
301         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
302         pub(crate) fn take_inner(mut self) -> *mut nativeCounterpartyForwardingInfo {
303                 assert!(self.is_owned);
304                 let ret = ObjOps::untweak_ptr(self.inner);
305                 self.inner = core::ptr::null_mut();
306                 ret
307         }
308 }
309 /// Base routing fee in millisatoshis.
310 #[no_mangle]
311 pub extern "C" fn CounterpartyForwardingInfo_get_fee_base_msat(this_ptr: &CounterpartyForwardingInfo) -> u32 {
312         let mut inner_val = &mut this_ptr.get_native_mut_ref().fee_base_msat;
313         *inner_val
314 }
315 /// Base routing fee in millisatoshis.
316 #[no_mangle]
317 pub extern "C" fn CounterpartyForwardingInfo_set_fee_base_msat(this_ptr: &mut CounterpartyForwardingInfo, mut val: u32) {
318         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.fee_base_msat = val;
319 }
320 /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
321 #[no_mangle]
322 pub extern "C" fn CounterpartyForwardingInfo_get_fee_proportional_millionths(this_ptr: &CounterpartyForwardingInfo) -> u32 {
323         let mut inner_val = &mut this_ptr.get_native_mut_ref().fee_proportional_millionths;
324         *inner_val
325 }
326 /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
327 #[no_mangle]
328 pub extern "C" fn CounterpartyForwardingInfo_set_fee_proportional_millionths(this_ptr: &mut CounterpartyForwardingInfo, mut val: u32) {
329         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.fee_proportional_millionths = val;
330 }
331 /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
332 /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
333 /// `cltv_expiry_delta` for more details.
334 #[no_mangle]
335 pub extern "C" fn CounterpartyForwardingInfo_get_cltv_expiry_delta(this_ptr: &CounterpartyForwardingInfo) -> u16 {
336         let mut inner_val = &mut this_ptr.get_native_mut_ref().cltv_expiry_delta;
337         *inner_val
338 }
339 /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
340 /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
341 /// `cltv_expiry_delta` for more details.
342 #[no_mangle]
343 pub extern "C" fn CounterpartyForwardingInfo_set_cltv_expiry_delta(this_ptr: &mut CounterpartyForwardingInfo, mut val: u16) {
344         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.cltv_expiry_delta = val;
345 }
346 /// Constructs a new CounterpartyForwardingInfo given each field
347 #[must_use]
348 #[no_mangle]
349 pub extern "C" fn CounterpartyForwardingInfo_new(mut fee_base_msat_arg: u32, mut fee_proportional_millionths_arg: u32, mut cltv_expiry_delta_arg: u16) -> CounterpartyForwardingInfo {
350         CounterpartyForwardingInfo { inner: ObjOps::heap_alloc(nativeCounterpartyForwardingInfo {
351                 fee_base_msat: fee_base_msat_arg,
352                 fee_proportional_millionths: fee_proportional_millionths_arg,
353                 cltv_expiry_delta: cltv_expiry_delta_arg,
354         }), is_owned: true }
355 }
356 impl Clone for CounterpartyForwardingInfo {
357         fn clone(&self) -> Self {
358                 Self {
359                         inner: if <*mut nativeCounterpartyForwardingInfo>::is_null(self.inner) { core::ptr::null_mut() } else {
360                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
361                         is_owned: true,
362                 }
363         }
364 }
365 #[allow(unused)]
366 /// Used only if an object of this type is returned as a trait impl by a method
367 pub(crate) extern "C" fn CounterpartyForwardingInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
368         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeCounterpartyForwardingInfo)).clone() })) as *mut c_void
369 }
370 #[no_mangle]
371 /// Creates a copy of the CounterpartyForwardingInfo
372 pub extern "C" fn CounterpartyForwardingInfo_clone(orig: &CounterpartyForwardingInfo) -> CounterpartyForwardingInfo {
373         orig.clone()
374 }
375
376 use lightning::ln::channelmanager::ChannelCounterparty as nativeChannelCounterpartyImport;
377 pub(crate) type nativeChannelCounterparty = nativeChannelCounterpartyImport;
378
379 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
380 /// to better separate parameters.
381 #[must_use]
382 #[repr(C)]
383 pub struct ChannelCounterparty {
384         /// A pointer to the opaque Rust object.
385
386         /// Nearly everywhere, inner must be non-null, however in places where
387         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
388         pub inner: *mut nativeChannelCounterparty,
389         /// Indicates that this is the only struct which contains the same pointer.
390
391         /// Rust functions which take ownership of an object provided via an argument require
392         /// this to be true and invalidate the object pointed to by inner.
393         pub is_owned: bool,
394 }
395
396 impl Drop for ChannelCounterparty {
397         fn drop(&mut self) {
398                 if self.is_owned && !<*mut nativeChannelCounterparty>::is_null(self.inner) {
399                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
400                 }
401         }
402 }
403 /// Frees any resources used by the ChannelCounterparty, if is_owned is set and inner is non-NULL.
404 #[no_mangle]
405 pub extern "C" fn ChannelCounterparty_free(this_obj: ChannelCounterparty) { }
406 #[allow(unused)]
407 /// Used only if an object of this type is returned as a trait impl by a method
408 pub(crate) extern "C" fn ChannelCounterparty_free_void(this_ptr: *mut c_void) {
409         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelCounterparty); }
410 }
411 #[allow(unused)]
412 impl ChannelCounterparty {
413         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelCounterparty {
414                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
415         }
416         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelCounterparty {
417                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
418         }
419         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
420         pub(crate) fn take_inner(mut self) -> *mut nativeChannelCounterparty {
421                 assert!(self.is_owned);
422                 let ret = ObjOps::untweak_ptr(self.inner);
423                 self.inner = core::ptr::null_mut();
424                 ret
425         }
426 }
427 /// The node_id of our counterparty
428 #[no_mangle]
429 pub extern "C" fn ChannelCounterparty_get_node_id(this_ptr: &ChannelCounterparty) -> crate::c_types::PublicKey {
430         let mut inner_val = &mut this_ptr.get_native_mut_ref().node_id;
431         crate::c_types::PublicKey::from_rust(&inner_val)
432 }
433 /// The node_id of our counterparty
434 #[no_mangle]
435 pub extern "C" fn ChannelCounterparty_set_node_id(this_ptr: &mut ChannelCounterparty, mut val: crate::c_types::PublicKey) {
436         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.node_id = val.into_rust();
437 }
438 /// The Features the channel counterparty provided upon last connection.
439 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
440 /// many routing-relevant features are present in the init context.
441 #[no_mangle]
442 pub extern "C" fn ChannelCounterparty_get_features(this_ptr: &ChannelCounterparty) -> crate::lightning::ln::features::InitFeatures {
443         let mut inner_val = &mut this_ptr.get_native_mut_ref().features;
444         crate::lightning::ln::features::InitFeatures { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::ln::features::InitFeatures<>) as *mut _) }, is_owned: false }
445 }
446 /// The Features the channel counterparty provided upon last connection.
447 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
448 /// many routing-relevant features are present in the init context.
449 #[no_mangle]
450 pub extern "C" fn ChannelCounterparty_set_features(this_ptr: &mut ChannelCounterparty, mut val: crate::lightning::ln::features::InitFeatures) {
451         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.features = *unsafe { Box::from_raw(val.take_inner()) };
452 }
453 /// The value, in satoshis, that must always be held in the channel for our counterparty. This
454 /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
455 /// claiming at least this value on chain.
456 ///
457 /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
458 ///
459 /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
460 #[no_mangle]
461 pub extern "C" fn ChannelCounterparty_get_unspendable_punishment_reserve(this_ptr: &ChannelCounterparty) -> u64 {
462         let mut inner_val = &mut this_ptr.get_native_mut_ref().unspendable_punishment_reserve;
463         *inner_val
464 }
465 /// The value, in satoshis, that must always be held in the channel for our counterparty. This
466 /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
467 /// claiming at least this value on chain.
468 ///
469 /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
470 ///
471 /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
472 #[no_mangle]
473 pub extern "C" fn ChannelCounterparty_set_unspendable_punishment_reserve(this_ptr: &mut ChannelCounterparty, mut val: u64) {
474         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.unspendable_punishment_reserve = val;
475 }
476 /// Information on the fees and requirements that the counterparty requires when forwarding
477 /// payments to us through this channel.
478 ///
479 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
480 #[no_mangle]
481 pub extern "C" fn ChannelCounterparty_get_forwarding_info(this_ptr: &ChannelCounterparty) -> crate::lightning::ln::channelmanager::CounterpartyForwardingInfo {
482         let mut inner_val = &mut this_ptr.get_native_mut_ref().forwarding_info;
483         let mut local_inner_val = crate::lightning::ln::channelmanager::CounterpartyForwardingInfo { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::ln::channelmanager::CounterpartyForwardingInfo<>) as *mut _ }, is_owned: false };
484         local_inner_val
485 }
486 /// Information on the fees and requirements that the counterparty requires when forwarding
487 /// payments to us through this channel.
488 ///
489 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
490 #[no_mangle]
491 pub extern "C" fn ChannelCounterparty_set_forwarding_info(this_ptr: &mut ChannelCounterparty, mut val: crate::lightning::ln::channelmanager::CounterpartyForwardingInfo) {
492         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
493         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.forwarding_info = local_val;
494 }
495 /// Constructs a new ChannelCounterparty given each field
496 #[must_use]
497 #[no_mangle]
498 pub extern "C" fn ChannelCounterparty_new(mut node_id_arg: crate::c_types::PublicKey, mut features_arg: crate::lightning::ln::features::InitFeatures, mut unspendable_punishment_reserve_arg: u64, mut forwarding_info_arg: crate::lightning::ln::channelmanager::CounterpartyForwardingInfo) -> ChannelCounterparty {
499         let mut local_forwarding_info_arg = if forwarding_info_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(forwarding_info_arg.take_inner()) } }) };
500         ChannelCounterparty { inner: ObjOps::heap_alloc(nativeChannelCounterparty {
501                 node_id: node_id_arg.into_rust(),
502                 features: *unsafe { Box::from_raw(features_arg.take_inner()) },
503                 unspendable_punishment_reserve: unspendable_punishment_reserve_arg,
504                 forwarding_info: local_forwarding_info_arg,
505         }), is_owned: true }
506 }
507 impl Clone for ChannelCounterparty {
508         fn clone(&self) -> Self {
509                 Self {
510                         inner: if <*mut nativeChannelCounterparty>::is_null(self.inner) { core::ptr::null_mut() } else {
511                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
512                         is_owned: true,
513                 }
514         }
515 }
516 #[allow(unused)]
517 /// Used only if an object of this type is returned as a trait impl by a method
518 pub(crate) extern "C" fn ChannelCounterparty_clone_void(this_ptr: *const c_void) -> *mut c_void {
519         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelCounterparty)).clone() })) as *mut c_void
520 }
521 #[no_mangle]
522 /// Creates a copy of the ChannelCounterparty
523 pub extern "C" fn ChannelCounterparty_clone(orig: &ChannelCounterparty) -> ChannelCounterparty {
524         orig.clone()
525 }
526
527 use lightning::ln::channelmanager::ChannelDetails as nativeChannelDetailsImport;
528 pub(crate) type nativeChannelDetails = nativeChannelDetailsImport;
529
530 /// Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
531 #[must_use]
532 #[repr(C)]
533 pub struct ChannelDetails {
534         /// A pointer to the opaque Rust object.
535
536         /// Nearly everywhere, inner must be non-null, however in places where
537         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
538         pub inner: *mut nativeChannelDetails,
539         /// Indicates that this is the only struct which contains the same pointer.
540
541         /// Rust functions which take ownership of an object provided via an argument require
542         /// this to be true and invalidate the object pointed to by inner.
543         pub is_owned: bool,
544 }
545
546 impl Drop for ChannelDetails {
547         fn drop(&mut self) {
548                 if self.is_owned && !<*mut nativeChannelDetails>::is_null(self.inner) {
549                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
550                 }
551         }
552 }
553 /// Frees any resources used by the ChannelDetails, if is_owned is set and inner is non-NULL.
554 #[no_mangle]
555 pub extern "C" fn ChannelDetails_free(this_obj: ChannelDetails) { }
556 #[allow(unused)]
557 /// Used only if an object of this type is returned as a trait impl by a method
558 pub(crate) extern "C" fn ChannelDetails_free_void(this_ptr: *mut c_void) {
559         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelDetails); }
560 }
561 #[allow(unused)]
562 impl ChannelDetails {
563         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelDetails {
564                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
565         }
566         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelDetails {
567                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
568         }
569         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
570         pub(crate) fn take_inner(mut self) -> *mut nativeChannelDetails {
571                 assert!(self.is_owned);
572                 let ret = ObjOps::untweak_ptr(self.inner);
573                 self.inner = core::ptr::null_mut();
574                 ret
575         }
576 }
577 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
578 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
579 /// Note that this means this value is *not* persistent - it can change once during the
580 /// lifetime of the channel.
581 #[no_mangle]
582 pub extern "C" fn ChannelDetails_get_channel_id(this_ptr: &ChannelDetails) -> *const [u8; 32] {
583         let mut inner_val = &mut this_ptr.get_native_mut_ref().channel_id;
584         inner_val
585 }
586 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
587 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
588 /// Note that this means this value is *not* persistent - it can change once during the
589 /// lifetime of the channel.
590 #[no_mangle]
591 pub extern "C" fn ChannelDetails_set_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::ThirtyTwoBytes) {
592         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.channel_id = val.data;
593 }
594 /// Parameters which apply to our counterparty. See individual fields for more information.
595 #[no_mangle]
596 pub extern "C" fn ChannelDetails_get_counterparty(this_ptr: &ChannelDetails) -> crate::lightning::ln::channelmanager::ChannelCounterparty {
597         let mut inner_val = &mut this_ptr.get_native_mut_ref().counterparty;
598         crate::lightning::ln::channelmanager::ChannelCounterparty { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::ln::channelmanager::ChannelCounterparty<>) as *mut _) }, is_owned: false }
599 }
600 /// Parameters which apply to our counterparty. See individual fields for more information.
601 #[no_mangle]
602 pub extern "C" fn ChannelDetails_set_counterparty(this_ptr: &mut ChannelDetails, mut val: crate::lightning::ln::channelmanager::ChannelCounterparty) {
603         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.counterparty = *unsafe { Box::from_raw(val.take_inner()) };
604 }
605 /// The Channel's funding transaction output, if we've negotiated the funding transaction with
606 /// our counterparty already.
607 ///
608 /// Note that, if this has been set, `channel_id` will be equivalent to
609 /// `funding_txo.unwrap().to_channel_id()`.
610 ///
611 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
612 #[no_mangle]
613 pub extern "C" fn ChannelDetails_get_funding_txo(this_ptr: &ChannelDetails) -> crate::lightning::chain::transaction::OutPoint {
614         let mut inner_val = &mut this_ptr.get_native_mut_ref().funding_txo;
615         let mut local_inner_val = crate::lightning::chain::transaction::OutPoint { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::chain::transaction::OutPoint<>) as *mut _ }, is_owned: false };
616         local_inner_val
617 }
618 /// The Channel's funding transaction output, if we've negotiated the funding transaction with
619 /// our counterparty already.
620 ///
621 /// Note that, if this has been set, `channel_id` will be equivalent to
622 /// `funding_txo.unwrap().to_channel_id()`.
623 ///
624 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
625 #[no_mangle]
626 pub extern "C" fn ChannelDetails_set_funding_txo(this_ptr: &mut ChannelDetails, mut val: crate::lightning::chain::transaction::OutPoint) {
627         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
628         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.funding_txo = local_val;
629 }
630 /// The position of the funding transaction in the chain. None if the funding transaction has
631 /// not yet been confirmed and the channel fully opened.
632 #[no_mangle]
633 pub extern "C" fn ChannelDetails_get_short_channel_id(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u64Z {
634         let mut inner_val = &mut this_ptr.get_native_mut_ref().short_channel_id;
635         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() }) };
636         local_inner_val
637 }
638 /// The position of the funding transaction in the chain. None if the funding transaction has
639 /// not yet been confirmed and the channel fully opened.
640 #[no_mangle]
641 pub extern "C" fn ChannelDetails_set_short_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u64Z) {
642         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
643         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.short_channel_id = local_val;
644 }
645 /// The value, in satoshis, of this channel as appears in the funding output
646 #[no_mangle]
647 pub extern "C" fn ChannelDetails_get_channel_value_satoshis(this_ptr: &ChannelDetails) -> u64 {
648         let mut inner_val = &mut this_ptr.get_native_mut_ref().channel_value_satoshis;
649         *inner_val
650 }
651 /// The value, in satoshis, of this channel as appears in the funding output
652 #[no_mangle]
653 pub extern "C" fn ChannelDetails_set_channel_value_satoshis(this_ptr: &mut ChannelDetails, mut val: u64) {
654         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.channel_value_satoshis = val;
655 }
656 /// The value, in satoshis, that must always be held in the channel for us. This value ensures
657 /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
658 /// this value on chain.
659 ///
660 /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
661 ///
662 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
663 ///
664 /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
665 #[no_mangle]
666 pub extern "C" fn ChannelDetails_get_unspendable_punishment_reserve(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u64Z {
667         let mut inner_val = &mut this_ptr.get_native_mut_ref().unspendable_punishment_reserve;
668         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() }) };
669         local_inner_val
670 }
671 /// The value, in satoshis, that must always be held in the channel for us. This value ensures
672 /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
673 /// this value on chain.
674 ///
675 /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
676 ///
677 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
678 ///
679 /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
680 #[no_mangle]
681 pub extern "C" fn ChannelDetails_set_unspendable_punishment_reserve(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u64Z) {
682         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
683         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.unspendable_punishment_reserve = local_val;
684 }
685 /// The `user_channel_id` passed in to create_channel, or 0 if the channel was inbound.
686 #[no_mangle]
687 pub extern "C" fn ChannelDetails_get_user_channel_id(this_ptr: &ChannelDetails) -> u64 {
688         let mut inner_val = &mut this_ptr.get_native_mut_ref().user_channel_id;
689         *inner_val
690 }
691 /// The `user_channel_id` passed in to create_channel, or 0 if the channel was inbound.
692 #[no_mangle]
693 pub extern "C" fn ChannelDetails_set_user_channel_id(this_ptr: &mut ChannelDetails, mut val: u64) {
694         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.user_channel_id = val;
695 }
696 /// Our total balance.  This is the amount we would get if we close the channel.
697 /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
698 /// amount is not likely to be recoverable on close.
699 ///
700 /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
701 /// balance is not available for inclusion in new outbound HTLCs). This further does not include
702 /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
703 /// This does not consider any on-chain fees.
704 ///
705 /// See also [`ChannelDetails::outbound_capacity_msat`]
706 #[no_mangle]
707 pub extern "C" fn ChannelDetails_get_balance_msat(this_ptr: &ChannelDetails) -> u64 {
708         let mut inner_val = &mut this_ptr.get_native_mut_ref().balance_msat;
709         *inner_val
710 }
711 /// Our total balance.  This is the amount we would get if we close the channel.
712 /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
713 /// amount is not likely to be recoverable on close.
714 ///
715 /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
716 /// balance is not available for inclusion in new outbound HTLCs). This further does not include
717 /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
718 /// This does not consider any on-chain fees.
719 ///
720 /// See also [`ChannelDetails::outbound_capacity_msat`]
721 #[no_mangle]
722 pub extern "C" fn ChannelDetails_set_balance_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
723         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.balance_msat = val;
724 }
725 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
726 /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
727 /// available for inclusion in new outbound HTLCs). This further does not include any pending
728 /// outgoing HTLCs which are awaiting some other resolution to be sent.
729 ///
730 /// See also [`ChannelDetails::balance_msat`]
731 ///
732 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
733 /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
734 /// should be able to spend nearly this amount.
735 #[no_mangle]
736 pub extern "C" fn ChannelDetails_get_outbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
737         let mut inner_val = &mut this_ptr.get_native_mut_ref().outbound_capacity_msat;
738         *inner_val
739 }
740 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
741 /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
742 /// available for inclusion in new outbound HTLCs). This further does not include any pending
743 /// outgoing HTLCs which are awaiting some other resolution to be sent.
744 ///
745 /// See also [`ChannelDetails::balance_msat`]
746 ///
747 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
748 /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
749 /// should be able to spend nearly this amount.
750 #[no_mangle]
751 pub extern "C" fn ChannelDetails_set_outbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
752         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.outbound_capacity_msat = val;
753 }
754 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
755 /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
756 /// available for inclusion in new inbound HTLCs).
757 /// Note that there are some corner cases not fully handled here, so the actual available
758 /// inbound capacity may be slightly higher than this.
759 ///
760 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
761 /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
762 /// However, our counterparty should be able to spend nearly this amount.
763 #[no_mangle]
764 pub extern "C" fn ChannelDetails_get_inbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
765         let mut inner_val = &mut this_ptr.get_native_mut_ref().inbound_capacity_msat;
766         *inner_val
767 }
768 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
769 /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
770 /// available for inclusion in new inbound HTLCs).
771 /// Note that there are some corner cases not fully handled here, so the actual available
772 /// inbound capacity may be slightly higher than this.
773 ///
774 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
775 /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
776 /// However, our counterparty should be able to spend nearly this amount.
777 #[no_mangle]
778 pub extern "C" fn ChannelDetails_set_inbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
779         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.inbound_capacity_msat = val;
780 }
781 /// The number of required confirmations on the funding transaction before the funding will be
782 /// considered \"locked\". This number is selected by the channel fundee (i.e. us if
783 /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
784 /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
785 /// [`ChannelHandshakeLimits::max_minimum_depth`].
786 ///
787 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
788 ///
789 /// [`is_outbound`]: ChannelDetails::is_outbound
790 /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
791 /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
792 #[no_mangle]
793 pub extern "C" fn ChannelDetails_get_confirmations_required(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u32Z {
794         let mut inner_val = &mut this_ptr.get_native_mut_ref().confirmations_required;
795         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() }) };
796         local_inner_val
797 }
798 /// The number of required confirmations on the funding transaction before the funding will be
799 /// considered \"locked\". This number is selected by the channel fundee (i.e. us if
800 /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
801 /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
802 /// [`ChannelHandshakeLimits::max_minimum_depth`].
803 ///
804 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
805 ///
806 /// [`is_outbound`]: ChannelDetails::is_outbound
807 /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
808 /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
809 #[no_mangle]
810 pub extern "C" fn ChannelDetails_set_confirmations_required(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u32Z) {
811         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
812         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.confirmations_required = local_val;
813 }
814 /// The number of blocks (after our commitment transaction confirms) that we will need to wait
815 /// until we can claim our funds after we force-close the channel. During this time our
816 /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
817 /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
818 /// time to claim our non-HTLC-encumbered funds.
819 ///
820 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
821 #[no_mangle]
822 pub extern "C" fn ChannelDetails_get_force_close_spend_delay(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u16Z {
823         let mut inner_val = &mut this_ptr.get_native_mut_ref().force_close_spend_delay;
824         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() }) };
825         local_inner_val
826 }
827 /// The number of blocks (after our commitment transaction confirms) that we will need to wait
828 /// until we can claim our funds after we force-close the channel. During this time our
829 /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
830 /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
831 /// time to claim our non-HTLC-encumbered funds.
832 ///
833 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
834 #[no_mangle]
835 pub extern "C" fn ChannelDetails_set_force_close_spend_delay(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u16Z) {
836         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
837         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.force_close_spend_delay = local_val;
838 }
839 /// True if the channel was initiated (and thus funded) by us.
840 #[no_mangle]
841 pub extern "C" fn ChannelDetails_get_is_outbound(this_ptr: &ChannelDetails) -> bool {
842         let mut inner_val = &mut this_ptr.get_native_mut_ref().is_outbound;
843         *inner_val
844 }
845 /// True if the channel was initiated (and thus funded) by us.
846 #[no_mangle]
847 pub extern "C" fn ChannelDetails_set_is_outbound(this_ptr: &mut ChannelDetails, mut val: bool) {
848         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.is_outbound = val;
849 }
850 /// True if the channel is confirmed, funding_locked messages have been exchanged, and the
851 /// channel is not currently being shut down. `funding_locked` message exchange implies the
852 /// required confirmation count has been reached (and we were connected to the peer at some
853 /// point after the funding transaction received enough confirmations). The required
854 /// confirmation count is provided in [`confirmations_required`].
855 ///
856 /// [`confirmations_required`]: ChannelDetails::confirmations_required
857 #[no_mangle]
858 pub extern "C" fn ChannelDetails_get_is_funding_locked(this_ptr: &ChannelDetails) -> bool {
859         let mut inner_val = &mut this_ptr.get_native_mut_ref().is_funding_locked;
860         *inner_val
861 }
862 /// True if the channel is confirmed, funding_locked messages have been exchanged, and the
863 /// channel is not currently being shut down. `funding_locked` message exchange implies the
864 /// required confirmation count has been reached (and we were connected to the peer at some
865 /// point after the funding transaction received enough confirmations). The required
866 /// confirmation count is provided in [`confirmations_required`].
867 ///
868 /// [`confirmations_required`]: ChannelDetails::confirmations_required
869 #[no_mangle]
870 pub extern "C" fn ChannelDetails_set_is_funding_locked(this_ptr: &mut ChannelDetails, mut val: bool) {
871         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.is_funding_locked = val;
872 }
873 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
874 /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
875 ///
876 /// This is a strict superset of `is_funding_locked`.
877 #[no_mangle]
878 pub extern "C" fn ChannelDetails_get_is_usable(this_ptr: &ChannelDetails) -> bool {
879         let mut inner_val = &mut this_ptr.get_native_mut_ref().is_usable;
880         *inner_val
881 }
882 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
883 /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
884 ///
885 /// This is a strict superset of `is_funding_locked`.
886 #[no_mangle]
887 pub extern "C" fn ChannelDetails_set_is_usable(this_ptr: &mut ChannelDetails, mut val: bool) {
888         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.is_usable = val;
889 }
890 /// True if this channel is (or will be) publicly-announced.
891 #[no_mangle]
892 pub extern "C" fn ChannelDetails_get_is_public(this_ptr: &ChannelDetails) -> bool {
893         let mut inner_val = &mut this_ptr.get_native_mut_ref().is_public;
894         *inner_val
895 }
896 /// True if this channel is (or will be) publicly-announced.
897 #[no_mangle]
898 pub extern "C" fn ChannelDetails_set_is_public(this_ptr: &mut ChannelDetails, mut val: bool) {
899         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.is_public = val;
900 }
901 /// Constructs a new ChannelDetails given each field
902 #[must_use]
903 #[no_mangle]
904 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_channel_id_arg: u64, mut balance_msat_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 {
905         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()) } }) };
906         let mut local_short_channel_id_arg = if short_channel_id_arg.is_some() { Some( { short_channel_id_arg.take() }) } else { None };
907         let mut local_unspendable_punishment_reserve_arg = if unspendable_punishment_reserve_arg.is_some() { Some( { unspendable_punishment_reserve_arg.take() }) } else { None };
908         let mut local_confirmations_required_arg = if confirmations_required_arg.is_some() { Some( { confirmations_required_arg.take() }) } else { None };
909         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 };
910         ChannelDetails { inner: ObjOps::heap_alloc(nativeChannelDetails {
911                 channel_id: channel_id_arg.data,
912                 counterparty: *unsafe { Box::from_raw(counterparty_arg.take_inner()) },
913                 funding_txo: local_funding_txo_arg,
914                 short_channel_id: local_short_channel_id_arg,
915                 channel_value_satoshis: channel_value_satoshis_arg,
916                 unspendable_punishment_reserve: local_unspendable_punishment_reserve_arg,
917                 user_channel_id: user_channel_id_arg,
918                 balance_msat: balance_msat_arg,
919                 outbound_capacity_msat: outbound_capacity_msat_arg,
920                 inbound_capacity_msat: inbound_capacity_msat_arg,
921                 confirmations_required: local_confirmations_required_arg,
922                 force_close_spend_delay: local_force_close_spend_delay_arg,
923                 is_outbound: is_outbound_arg,
924                 is_funding_locked: is_funding_locked_arg,
925                 is_usable: is_usable_arg,
926                 is_public: is_public_arg,
927         }), is_owned: true }
928 }
929 impl Clone for ChannelDetails {
930         fn clone(&self) -> Self {
931                 Self {
932                         inner: if <*mut nativeChannelDetails>::is_null(self.inner) { core::ptr::null_mut() } else {
933                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
934                         is_owned: true,
935                 }
936         }
937 }
938 #[allow(unused)]
939 /// Used only if an object of this type is returned as a trait impl by a method
940 pub(crate) extern "C" fn ChannelDetails_clone_void(this_ptr: *const c_void) -> *mut c_void {
941         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelDetails)).clone() })) as *mut c_void
942 }
943 #[no_mangle]
944 /// Creates a copy of the ChannelDetails
945 pub extern "C" fn ChannelDetails_clone(orig: &ChannelDetails) -> ChannelDetails {
946         orig.clone()
947 }
948 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
949 /// Err() type describing which state the payment is in, see the description of individual enum
950 /// states for more.
951 #[must_use]
952 #[derive(Clone)]
953 #[repr(C)]
954 pub enum PaymentSendFailure {
955         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
956         /// send the payment at all. No channel state has been changed or messages sent to peers, and
957         /// once you've changed the parameter at error, you can freely retry the payment in full.
958         ParameterError(crate::lightning::util::errors::APIError),
959         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
960         /// from attempting to send the payment at all. No channel state has been changed or messages
961         /// sent to peers, and once you've changed the parameter at error, you can freely retry the
962         /// payment in full.
963         ///
964         /// The results here are ordered the same as the paths in the route object which was passed to
965         /// send_payment.
966         PathParameterError(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
967         /// All paths which were attempted failed to send, with no channel state change taking place.
968         /// You can freely retry the payment in full (though you probably want to do so over different
969         /// paths than the ones selected).
970         AllFailedRetrySafe(crate::c_types::derived::CVec_APIErrorZ),
971         /// Some paths which were attempted failed to send, though possibly not all. At least some
972         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
973         /// in over-/re-payment.
974         ///
975         /// The results here are ordered the same as the paths in the route object which was passed to
976         /// send_payment, and any Errs which are not APIError::MonitorUpdateFailed can be safely
977         /// retried (though there is currently no API with which to do so).
978         ///
979         /// Any entries which contain Err(APIError::MonitorUpdateFailed) or Ok(()) MUST NOT be retried
980         /// as they will result in over-/re-payment. These HTLCs all either successfully sent (in the
981         /// case of Ok(())) or will send once channel_monitor_updated is called on the next-hop channel
982         /// with the latest update_id.
983         PartialFailure {
984                 /// The errors themselves, in the same order as the route hops.
985                 results: crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ,
986                 /// If some paths failed without irrevocably committing to the new HTLC(s), this will
987                 /// contain a [`RouteParameters`] object which can be used to calculate a new route that
988                 /// will pay all remaining unpaid balance.
989                 ///
990                 /// Note that this (or a relevant inner pointer) may be NULL or all-0s to represent None
991                 failed_paths_retry: crate::lightning::routing::router::RouteParameters,
992                 /// The payment id for the payment, which is now at least partially pending.
993                 payment_id: crate::c_types::ThirtyTwoBytes,
994         },
995 }
996 use lightning::ln::channelmanager::PaymentSendFailure as nativePaymentSendFailure;
997 impl PaymentSendFailure {
998         #[allow(unused)]
999         pub(crate) fn to_native(&self) -> nativePaymentSendFailure {
1000                 match self {
1001                         PaymentSendFailure::ParameterError (ref a, ) => {
1002                                 let mut a_nonref = (*a).clone();
1003                                 nativePaymentSendFailure::ParameterError (
1004                                         a_nonref.into_native(),
1005                                 )
1006                         },
1007                         PaymentSendFailure::PathParameterError (ref a, ) => {
1008                                 let mut a_nonref = (*a).clone();
1009                                 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 }); };
1010                                 nativePaymentSendFailure::PathParameterError (
1011                                         local_a_nonref,
1012                                 )
1013                         },
1014                         PaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
1015                                 let mut a_nonref = (*a).clone();
1016                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { item.into_native() }); };
1017                                 nativePaymentSendFailure::AllFailedRetrySafe (
1018                                         local_a_nonref,
1019                                 )
1020                         },
1021                         PaymentSendFailure::PartialFailure {ref results, ref failed_paths_retry, ref payment_id, } => {
1022                                 let mut results_nonref = (*results).clone();
1023                                 let mut local_results_nonref = Vec::new(); for mut item in results_nonref.into_rust().drain(..) { local_results_nonref.push( { let mut local_results_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_results_nonref_0 }); };
1024                                 let mut failed_paths_retry_nonref = (*failed_paths_retry).clone();
1025                                 let mut local_failed_paths_retry_nonref = if failed_paths_retry_nonref.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(failed_paths_retry_nonref.take_inner()) } }) };
1026                                 let mut payment_id_nonref = (*payment_id).clone();
1027                                 nativePaymentSendFailure::PartialFailure {
1028                                         results: local_results_nonref,
1029                                         failed_paths_retry: local_failed_paths_retry_nonref,
1030                                         payment_id: ::lightning::ln::channelmanager::PaymentId(payment_id_nonref.data),
1031                                 }
1032                         },
1033                 }
1034         }
1035         #[allow(unused)]
1036         pub(crate) fn into_native(self) -> nativePaymentSendFailure {
1037                 match self {
1038                         PaymentSendFailure::ParameterError (mut a, ) => {
1039                                 nativePaymentSendFailure::ParameterError (
1040                                         a.into_native(),
1041                                 )
1042                         },
1043                         PaymentSendFailure::PathParameterError (mut a, ) => {
1044                                 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 }); };
1045                                 nativePaymentSendFailure::PathParameterError (
1046                                         local_a,
1047                                 )
1048                         },
1049                         PaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
1050                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { item.into_native() }); };
1051                                 nativePaymentSendFailure::AllFailedRetrySafe (
1052                                         local_a,
1053                                 )
1054                         },
1055                         PaymentSendFailure::PartialFailure {mut results, mut failed_paths_retry, mut payment_id, } => {
1056                                 let mut local_results = Vec::new(); for mut item in results.into_rust().drain(..) { local_results.push( { let mut local_results_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_results_0 }); };
1057                                 let mut local_failed_paths_retry = if failed_paths_retry.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(failed_paths_retry.take_inner()) } }) };
1058                                 nativePaymentSendFailure::PartialFailure {
1059                                         results: local_results,
1060                                         failed_paths_retry: local_failed_paths_retry,
1061                                         payment_id: ::lightning::ln::channelmanager::PaymentId(payment_id.data),
1062                                 }
1063                         },
1064                 }
1065         }
1066         #[allow(unused)]
1067         pub(crate) fn from_native(native: &nativePaymentSendFailure) -> Self {
1068                 match native {
1069                         nativePaymentSendFailure::ParameterError (ref a, ) => {
1070                                 let mut a_nonref = (*a).clone();
1071                                 PaymentSendFailure::ParameterError (
1072                                         crate::lightning::util::errors::APIError::native_into(a_nonref),
1073                                 )
1074                         },
1075                         nativePaymentSendFailure::PathParameterError (ref a, ) => {
1076                                 let mut a_nonref = (*a).clone();
1077                                 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 }); };
1078                                 PaymentSendFailure::PathParameterError (
1079                                         local_a_nonref.into(),
1080                                 )
1081                         },
1082                         nativePaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
1083                                 let mut a_nonref = (*a).clone();
1084                                 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) }); };
1085                                 PaymentSendFailure::AllFailedRetrySafe (
1086                                         local_a_nonref.into(),
1087                                 )
1088                         },
1089                         nativePaymentSendFailure::PartialFailure {ref results, ref failed_paths_retry, ref payment_id, } => {
1090                                 let mut results_nonref = (*results).clone();
1091                                 let mut local_results_nonref = Vec::new(); for mut item in results_nonref.drain(..) { local_results_nonref.push( { let mut local_results_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_results_nonref_0 }); };
1092                                 let mut failed_paths_retry_nonref = (*failed_paths_retry).clone();
1093                                 let mut local_failed_paths_retry_nonref = crate::lightning::routing::router::RouteParameters { inner: if failed_paths_retry_nonref.is_none() { core::ptr::null_mut() } else {  { ObjOps::heap_alloc((failed_paths_retry_nonref.unwrap())) } }, is_owned: true };
1094                                 let mut payment_id_nonref = (*payment_id).clone();
1095                                 PaymentSendFailure::PartialFailure {
1096                                         results: local_results_nonref.into(),
1097                                         failed_paths_retry: local_failed_paths_retry_nonref,
1098                                         payment_id: crate::c_types::ThirtyTwoBytes { data: payment_id_nonref.0 },
1099                                 }
1100                         },
1101                 }
1102         }
1103         #[allow(unused)]
1104         pub(crate) fn native_into(native: nativePaymentSendFailure) -> Self {
1105                 match native {
1106                         nativePaymentSendFailure::ParameterError (mut a, ) => {
1107                                 PaymentSendFailure::ParameterError (
1108                                         crate::lightning::util::errors::APIError::native_into(a),
1109                                 )
1110                         },
1111                         nativePaymentSendFailure::PathParameterError (mut a, ) => {
1112                                 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 }); };
1113                                 PaymentSendFailure::PathParameterError (
1114                                         local_a.into(),
1115                                 )
1116                         },
1117                         nativePaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
1118                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { crate::lightning::util::errors::APIError::native_into(item) }); };
1119                                 PaymentSendFailure::AllFailedRetrySafe (
1120                                         local_a.into(),
1121                                 )
1122                         },
1123                         nativePaymentSendFailure::PartialFailure {mut results, mut failed_paths_retry, mut payment_id, } => {
1124                                 let mut local_results = Vec::new(); for mut item in results.drain(..) { local_results.push( { let mut local_results_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_results_0 }); };
1125                                 let mut local_failed_paths_retry = crate::lightning::routing::router::RouteParameters { inner: if failed_paths_retry.is_none() { core::ptr::null_mut() } else {  { ObjOps::heap_alloc((failed_paths_retry.unwrap())) } }, is_owned: true };
1126                                 PaymentSendFailure::PartialFailure {
1127                                         results: local_results.into(),
1128                                         failed_paths_retry: local_failed_paths_retry,
1129                                         payment_id: crate::c_types::ThirtyTwoBytes { data: payment_id.0 },
1130                                 }
1131                         },
1132                 }
1133         }
1134 }
1135 /// Frees any resources used by the PaymentSendFailure
1136 #[no_mangle]
1137 pub extern "C" fn PaymentSendFailure_free(this_ptr: PaymentSendFailure) { }
1138 /// Creates a copy of the PaymentSendFailure
1139 #[no_mangle]
1140 pub extern "C" fn PaymentSendFailure_clone(orig: &PaymentSendFailure) -> PaymentSendFailure {
1141         orig.clone()
1142 }
1143 #[no_mangle]
1144 /// Utility method to constructs a new ParameterError-variant PaymentSendFailure
1145 pub extern "C" fn PaymentSendFailure_parameter_error(a: crate::lightning::util::errors::APIError) -> PaymentSendFailure {
1146         PaymentSendFailure::ParameterError(a, )
1147 }
1148 #[no_mangle]
1149 /// Utility method to constructs a new PathParameterError-variant PaymentSendFailure
1150 pub extern "C" fn PaymentSendFailure_path_parameter_error(a: crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ) -> PaymentSendFailure {
1151         PaymentSendFailure::PathParameterError(a, )
1152 }
1153 #[no_mangle]
1154 /// Utility method to constructs a new AllFailedRetrySafe-variant PaymentSendFailure
1155 pub extern "C" fn PaymentSendFailure_all_failed_retry_safe(a: crate::c_types::derived::CVec_APIErrorZ) -> PaymentSendFailure {
1156         PaymentSendFailure::AllFailedRetrySafe(a, )
1157 }
1158 #[no_mangle]
1159 /// Utility method to constructs a new PartialFailure-variant PaymentSendFailure
1160 pub extern "C" fn PaymentSendFailure_partial_failure(results: crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ, failed_paths_retry: crate::lightning::routing::router::RouteParameters, payment_id: crate::c_types::ThirtyTwoBytes) -> PaymentSendFailure {
1161         PaymentSendFailure::PartialFailure {
1162                 results,
1163                 failed_paths_retry,
1164                 payment_id,
1165         }
1166 }
1167
1168 use lightning::ln::channelmanager::PhantomRouteHints as nativePhantomRouteHintsImport;
1169 pub(crate) type nativePhantomRouteHints = nativePhantomRouteHintsImport;
1170
1171 /// Route hints used in constructing invoices for [phantom node payents].
1172 ///
1173 /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
1174 #[must_use]
1175 #[repr(C)]
1176 pub struct PhantomRouteHints {
1177         /// A pointer to the opaque Rust object.
1178
1179         /// Nearly everywhere, inner must be non-null, however in places where
1180         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1181         pub inner: *mut nativePhantomRouteHints,
1182         /// Indicates that this is the only struct which contains the same pointer.
1183
1184         /// Rust functions which take ownership of an object provided via an argument require
1185         /// this to be true and invalidate the object pointed to by inner.
1186         pub is_owned: bool,
1187 }
1188
1189 impl Drop for PhantomRouteHints {
1190         fn drop(&mut self) {
1191                 if self.is_owned && !<*mut nativePhantomRouteHints>::is_null(self.inner) {
1192                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1193                 }
1194         }
1195 }
1196 /// Frees any resources used by the PhantomRouteHints, if is_owned is set and inner is non-NULL.
1197 #[no_mangle]
1198 pub extern "C" fn PhantomRouteHints_free(this_obj: PhantomRouteHints) { }
1199 #[allow(unused)]
1200 /// Used only if an object of this type is returned as a trait impl by a method
1201 pub(crate) extern "C" fn PhantomRouteHints_free_void(this_ptr: *mut c_void) {
1202         unsafe { let _ = Box::from_raw(this_ptr as *mut nativePhantomRouteHints); }
1203 }
1204 #[allow(unused)]
1205 impl PhantomRouteHints {
1206         pub(crate) fn get_native_ref(&self) -> &'static nativePhantomRouteHints {
1207                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1208         }
1209         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativePhantomRouteHints {
1210                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1211         }
1212         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1213         pub(crate) fn take_inner(mut self) -> *mut nativePhantomRouteHints {
1214                 assert!(self.is_owned);
1215                 let ret = ObjOps::untweak_ptr(self.inner);
1216                 self.inner = core::ptr::null_mut();
1217                 ret
1218         }
1219 }
1220 /// The list of channels to be included in the invoice route hints.
1221 #[no_mangle]
1222 pub extern "C" fn PhantomRouteHints_get_channels(this_ptr: &PhantomRouteHints) -> crate::c_types::derived::CVec_ChannelDetailsZ {
1223         let mut inner_val = &mut this_ptr.get_native_mut_ref().channels;
1224         let mut local_inner_val = Vec::new(); for item in inner_val.iter() { local_inner_val.push( { crate::lightning::ln::channelmanager::ChannelDetails { inner: unsafe { ObjOps::nonnull_ptr_to_inner((item as *const lightning::ln::channelmanager::ChannelDetails<>) as *mut _) }, is_owned: false } }); };
1225         local_inner_val.into()
1226 }
1227 /// The list of channels to be included in the invoice route hints.
1228 #[no_mangle]
1229 pub extern "C" fn PhantomRouteHints_set_channels(this_ptr: &mut PhantomRouteHints, mut val: crate::c_types::derived::CVec_ChannelDetailsZ) {
1230         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
1231         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.channels = local_val;
1232 }
1233 /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1234 /// route hints.
1235 #[no_mangle]
1236 pub extern "C" fn PhantomRouteHints_get_phantom_scid(this_ptr: &PhantomRouteHints) -> u64 {
1237         let mut inner_val = &mut this_ptr.get_native_mut_ref().phantom_scid;
1238         *inner_val
1239 }
1240 /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1241 /// route hints.
1242 #[no_mangle]
1243 pub extern "C" fn PhantomRouteHints_set_phantom_scid(this_ptr: &mut PhantomRouteHints, mut val: u64) {
1244         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.phantom_scid = val;
1245 }
1246 /// The pubkey of the real backing node that would ultimately receive the payment.
1247 #[no_mangle]
1248 pub extern "C" fn PhantomRouteHints_get_real_node_pubkey(this_ptr: &PhantomRouteHints) -> crate::c_types::PublicKey {
1249         let mut inner_val = &mut this_ptr.get_native_mut_ref().real_node_pubkey;
1250         crate::c_types::PublicKey::from_rust(&inner_val)
1251 }
1252 /// The pubkey of the real backing node that would ultimately receive the payment.
1253 #[no_mangle]
1254 pub extern "C" fn PhantomRouteHints_set_real_node_pubkey(this_ptr: &mut PhantomRouteHints, mut val: crate::c_types::PublicKey) {
1255         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.real_node_pubkey = val.into_rust();
1256 }
1257 /// Constructs a new PhantomRouteHints given each field
1258 #[must_use]
1259 #[no_mangle]
1260 pub extern "C" fn PhantomRouteHints_new(mut channels_arg: crate::c_types::derived::CVec_ChannelDetailsZ, mut phantom_scid_arg: u64, mut real_node_pubkey_arg: crate::c_types::PublicKey) -> PhantomRouteHints {
1261         let mut local_channels_arg = Vec::new(); for mut item in channels_arg.into_rust().drain(..) { local_channels_arg.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
1262         PhantomRouteHints { inner: ObjOps::heap_alloc(nativePhantomRouteHints {
1263                 channels: local_channels_arg,
1264                 phantom_scid: phantom_scid_arg,
1265                 real_node_pubkey: real_node_pubkey_arg.into_rust(),
1266         }), is_owned: true }
1267 }
1268 /// Constructs a new ChannelManager to hold several channels and route between them.
1269 ///
1270 /// This is the main \"logic hub\" for all channel-related actions, and implements
1271 /// ChannelMessageHandler.
1272 ///
1273 /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
1274 ///
1275 /// panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
1276 ///
1277 /// Users need to notify the new ChannelManager when a new block is connected or
1278 /// disconnected using its `block_connected` and `block_disconnected` methods, starting
1279 /// from after `params.latest_hash`.
1280 #[must_use]
1281 #[no_mangle]
1282 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 {
1283         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()) });
1284         ChannelManager { inner: ObjOps::heap_alloc(ret), is_owned: true }
1285 }
1286
1287 /// Gets the current configuration applied to all new channels,  as
1288 #[must_use]
1289 #[no_mangle]
1290 pub extern "C" fn ChannelManager_get_current_default_configuration(this_arg: &ChannelManager) -> crate::lightning::util::config::UserConfig {
1291         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_current_default_configuration();
1292         crate::lightning::util::config::UserConfig { inner: unsafe { ObjOps::nonnull_ptr_to_inner((ret as *const lightning::util::config::UserConfig<>) as *mut _) }, is_owned: false }
1293 }
1294
1295 /// Creates a new outbound channel to the given remote node and with the given value.
1296 ///
1297 /// `user_channel_id` will be provided back as in
1298 /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
1299 /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to 0
1300 /// for inbound channels, so you may wish to avoid using 0 for `user_channel_id` here.
1301 /// `user_channel_id` has no meaning inside of LDK, it is simply copied to events and otherwise
1302 /// ignored.
1303 ///
1304 /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
1305 /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
1306 ///
1307 /// Note that we do not check if you are currently connected to the given peer. If no
1308 /// connection is available, the outbound `open_channel` message may fail to send, resulting in
1309 /// the channel eventually being silently forgotten (dropped on reload).
1310 ///
1311 /// Returns the new Channel's temporary `channel_id`. This ID will appear as
1312 /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
1313 /// [`ChannelDetails::channel_id`] until after
1314 /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
1315 /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
1316 /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
1317 ///
1318 /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
1319 /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
1320 /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
1321 ///
1322 /// Note that override_config (or a relevant inner pointer) may be NULL or all-0s to represent None
1323 #[must_use]
1324 #[no_mangle]
1325 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_channel_id: u64, mut override_config: crate::lightning::util::config::UserConfig) -> crate::c_types::derived::CResult__u832APIErrorZ {
1326         let mut local_override_config = if override_config.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(override_config.take_inner()) } }) };
1327         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.create_channel(their_network_key.into_rust(), channel_value_satoshis, push_msat, user_channel_id, local_override_config);
1328         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::ThirtyTwoBytes { data: o } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
1329         local_ret
1330 }
1331
1332 /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
1333 /// more information.
1334 #[must_use]
1335 #[no_mangle]
1336 pub extern "C" fn ChannelManager_list_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
1337         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.list_channels();
1338         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::channelmanager::ChannelDetails { inner: ObjOps::heap_alloc(item), is_owned: true } }); };
1339         local_ret.into()
1340 }
1341
1342 /// Gets the list of usable channels, in random order. Useful as an argument to
1343 /// get_route to ensure non-announced channels are used.
1344 ///
1345 /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
1346 /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
1347 /// are.
1348 #[must_use]
1349 #[no_mangle]
1350 pub extern "C" fn ChannelManager_list_usable_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
1351         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.list_usable_channels();
1352         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::channelmanager::ChannelDetails { inner: ObjOps::heap_alloc(item), is_owned: true } }); };
1353         local_ret.into()
1354 }
1355
1356 /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
1357 /// will be accepted on the given channel, and after additional timeout/the closing of all
1358 /// pending HTLCs, the channel will be closed on chain.
1359 ///
1360 ///  * If we are the channel initiator, we will pay between our [`Background`] and
1361 ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
1362 ///    estimate.
1363 ///  * If our counterparty is the channel initiator, we will require a channel closing
1364 ///    transaction feerate of at least our [`Background`] feerate or the feerate which
1365 ///    would appear on a force-closure transaction, whichever is lower. We will allow our
1366 ///    counterparty to pay as much fee as they'd like, however.
1367 ///
1368 /// May generate a SendShutdown message event on success, which should be relayed.
1369 ///
1370 /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
1371 /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
1372 /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
1373 #[must_use]
1374 #[no_mangle]
1375 pub extern "C" fn ChannelManager_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
1376         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.close_channel(unsafe { &*channel_id});
1377         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() };
1378         local_ret
1379 }
1380
1381 /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
1382 /// will be accepted on the given channel, and after additional timeout/the closing of all
1383 /// pending HTLCs, the channel will be closed on chain.
1384 ///
1385 /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
1386 /// the channel being closed or not:
1387 ///  * If we are the channel initiator, we will pay at least this feerate on the closing
1388 ///    transaction. The upper-bound is set by
1389 ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
1390 ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
1391 ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
1392 ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
1393 ///    will appear on a force-closure transaction, whichever is lower).
1394 ///
1395 /// May generate a SendShutdown message event on success, which should be relayed.
1396 ///
1397 /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
1398 /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
1399 /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
1400 #[must_use]
1401 #[no_mangle]
1402 pub extern "C" fn ChannelManager_close_channel_with_target_feerate(this_arg: &ChannelManager, channel_id: *const [u8; 32], mut target_feerate_sats_per_1000_weight: u32) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
1403         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.close_channel_with_target_feerate(unsafe { &*channel_id}, target_feerate_sats_per_1000_weight);
1404         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() };
1405         local_ret
1406 }
1407
1408 /// Force closes a channel, immediately broadcasting the latest local commitment transaction to
1409 /// the chain and rejecting new HTLCs on the given channel. Fails if channel_id is unknown to the manager.
1410 #[must_use]
1411 #[no_mangle]
1412 pub extern "C" fn ChannelManager_force_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
1413         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.force_close_channel(unsafe { &*channel_id});
1414         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() };
1415         local_ret
1416 }
1417
1418 /// Force close all channels, immediately broadcasting the latest local commitment transaction
1419 /// for each to the chain and rejecting new HTLCs on each.
1420 #[no_mangle]
1421 pub extern "C" fn ChannelManager_force_close_all_channels(this_arg: &ChannelManager) {
1422         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.force_close_all_channels()
1423 }
1424
1425 /// Sends a payment along a given route.
1426 ///
1427 /// Value parameters are provided via the last hop in route, see documentation for RouteHop
1428 /// fields for more info.
1429 ///
1430 /// Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
1431 /// payment), we don't do anything to stop you! We always try to ensure that if the provided
1432 /// next hop knows the preimage to payment_hash they can claim an additional amount as
1433 /// specified in the last hop in the route! Thus, you should probably do your own
1434 /// payment_preimage tracking (which you should already be doing as they represent \"proof of
1435 /// payment\") and prevent double-sends yourself.
1436 ///
1437 /// May generate SendHTLCs message(s) event on success, which should be relayed.
1438 ///
1439 /// Each path may have a different return value, and PaymentSendValue may return a Vec with
1440 /// each entry matching the corresponding-index entry in the route paths, see
1441 /// PaymentSendFailure for more info.
1442 ///
1443 /// In general, a path may raise:
1444 ///  * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
1445 ///    node public key) is specified.
1446 ///  * APIError::ChannelUnavailable if the next-hop channel is not available for updates
1447 ///    (including due to previous monitor update failure or new permanent monitor update
1448 ///    failure).
1449 ///  * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
1450 ///    relevant updates.
1451 ///
1452 /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
1453 /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
1454 /// different route unless you intend to pay twice!
1455 ///
1456 /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
1457 /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
1458 /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
1459 /// must not contain multiple paths as multi-path payments require a recipient-provided
1460 /// payment_secret.
1461 /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
1462 /// bit set (either as required or as available). If multiple paths are present in the Route,
1463 /// we assume the invoice had the basic_mpp feature set.
1464 ///
1465 /// Note that payment_secret (or a relevant inner pointer) may be NULL or all-0s to represent None
1466 #[must_use]
1467 #[no_mangle]
1468 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_PaymentIdPaymentSendFailureZ {
1469         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::PaymentSecret(payment_secret.data) }) };
1470         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.send_payment(route.get_native_ref(), ::lightning::ln::PaymentHash(payment_hash.data), &local_payment_secret);
1471         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() };
1472         local_ret
1473 }
1474
1475 /// Retries a payment along the given [`Route`].
1476 ///
1477 /// Errors returned are a superset of those returned from [`send_payment`], so see
1478 /// [`send_payment`] documentation for more details on errors. This method will also error if the
1479 /// retry amount puts the payment more than 10% over the payment's total amount, if the payment
1480 /// for the given `payment_id` cannot be found (likely due to timeout or success), or if
1481 /// further retries have been disabled with [`abandon_payment`].
1482 ///
1483 /// [`send_payment`]: [`ChannelManager::send_payment`]
1484 /// [`abandon_payment`]: [`ChannelManager::abandon_payment`]
1485 #[must_use]
1486 #[no_mangle]
1487 pub extern "C" fn ChannelManager_retry_payment(this_arg: &ChannelManager, route: &crate::lightning::routing::router::Route, mut payment_id: crate::c_types::ThirtyTwoBytes) -> crate::c_types::derived::CResult_NonePaymentSendFailureZ {
1488         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.retry_payment(route.get_native_ref(), ::lightning::ln::channelmanager::PaymentId(payment_id.data));
1489         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() };
1490         local_ret
1491 }
1492
1493 /// Signals that no further retries for the given payment will occur.
1494 ///
1495 /// After this method returns, any future calls to [`retry_payment`] for the given `payment_id`
1496 /// will fail with [`PaymentSendFailure::ParameterError`]. If no such event has been generated,
1497 /// an [`Event::PaymentFailed`] event will be generated as soon as there are no remaining
1498 /// pending HTLCs for this payment.
1499 ///
1500 /// Note that calling this method does *not* prevent a payment from succeeding. You must still
1501 /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
1502 /// determine the ultimate status of a payment.
1503 ///
1504 /// [`retry_payment`]: Self::retry_payment
1505 /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
1506 /// [`Event::PaymentSent`]: events::Event::PaymentSent
1507 #[no_mangle]
1508 pub extern "C" fn ChannelManager_abandon_payment(this_arg: &ChannelManager, mut payment_id: crate::c_types::ThirtyTwoBytes) {
1509         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.abandon_payment(::lightning::ln::channelmanager::PaymentId(payment_id.data))
1510 }
1511
1512 /// Send a spontaneous payment, which is a payment that does not require the recipient to have
1513 /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
1514 /// the preimage, it must be a cryptographically secure random value that no intermediate node
1515 /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
1516 /// never reach the recipient.
1517 ///
1518 /// See [`send_payment`] documentation for more details on the return value of this function.
1519 ///
1520 /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
1521 /// [`send_payment`] for more information about the risks of duplicate preimage usage.
1522 ///
1523 /// Note that `route` must have exactly one path.
1524 ///
1525 /// [`send_payment`]: Self::send_payment
1526 ///
1527 /// Note that payment_preimage (or a relevant inner pointer) may be NULL or all-0s to represent None
1528 #[must_use]
1529 #[no_mangle]
1530 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_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ {
1531         let mut local_payment_preimage = if payment_preimage.data == [0; 32] { None } else { Some( { ::lightning::ln::PaymentPreimage(payment_preimage.data) }) };
1532         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.send_spontaneous_payment(route.get_native_ref(), local_payment_preimage);
1533         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = o; let mut local_ret_0 = (crate::c_types::ThirtyTwoBytes { data: orig_ret_0_0.0 }, crate::c_types::ThirtyTwoBytes { data: orig_ret_0_1.0 }).into(); local_ret_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::channelmanager::PaymentSendFailure::native_into(e) }).into() };
1534         local_ret
1535 }
1536
1537 /// Call this upon creation of a funding transaction for the given channel.
1538 ///
1539 /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
1540 /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
1541 ///
1542 /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
1543 /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
1544 ///
1545 /// May panic if the output found in the funding transaction is duplicative with some other
1546 /// channel (note that this should be trivially prevented by using unique funding transaction
1547 /// keys per-channel).
1548 ///
1549 /// Do NOT broadcast the funding transaction yourself. When we have safely received our
1550 /// counterparty's signature the funding transaction will automatically be broadcast via the
1551 /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
1552 ///
1553 /// Note that this includes RBF or similar transaction replacement strategies - lightning does
1554 /// not currently support replacing a funding transaction on an existing channel. Instead,
1555 /// create a new channel with a conflicting funding transaction.
1556 ///
1557 /// [`Event::FundingGenerationReady`]: crate::util::events::Event::FundingGenerationReady
1558 /// [`Event::ChannelClosed`]: crate::util::events::Event::ChannelClosed
1559 #[must_use]
1560 #[no_mangle]
1561 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 {
1562         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.funding_transaction_generated(unsafe { &*temporary_channel_id}, funding_transaction.into_bitcoin());
1563         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() };
1564         local_ret
1565 }
1566
1567 /// Regenerates channel_announcements and generates a signed node_announcement from the given
1568 /// arguments, providing them in corresponding events via
1569 /// [`get_and_clear_pending_msg_events`], if at least one public channel has been confirmed
1570 /// on-chain. This effectively re-broadcasts all channel announcements and sends our node
1571 /// announcement to ensure that the lightning P2P network is aware of the channels we have and
1572 /// our network addresses.
1573 ///
1574 /// `rgb` is a node \"color\" and `alias` is a printable human-readable string to describe this
1575 /// node to humans. They carry no in-protocol meaning.
1576 ///
1577 /// `addresses` represent the set (possibly empty) of socket addresses on which this node
1578 /// accepts incoming connections. These will be included in the node_announcement, publicly
1579 /// tying these addresses together and to this node. If you wish to preserve user privacy,
1580 /// addresses should likely contain only Tor Onion addresses.
1581 ///
1582 /// Panics if `addresses` is absurdly large (more than 500).
1583 ///
1584 /// [`get_and_clear_pending_msg_events`]: MessageSendEventsProvider::get_and_clear_pending_msg_events
1585 #[no_mangle]
1586 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) {
1587         let mut local_addresses = Vec::new(); for mut item in addresses.into_rust().drain(..) { local_addresses.push( { item.into_native() }); };
1588         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.broadcast_node_announcement(rgb.data, alias.data, local_addresses)
1589 }
1590
1591 /// Processes HTLCs which are pending waiting on random forward delay.
1592 ///
1593 /// Should only really ever be called in response to a PendingHTLCsForwardable event.
1594 /// Will likely generate further events.
1595 #[no_mangle]
1596 pub extern "C" fn ChannelManager_process_pending_htlc_forwards(this_arg: &ChannelManager) {
1597         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.process_pending_htlc_forwards()
1598 }
1599
1600 /// Performs actions which should happen on startup and roughly once per minute thereafter.
1601 ///
1602 /// This currently includes:
1603 ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
1604 ///  * Broadcasting `ChannelUpdate` messages if we've been disconnected from our peer for more
1605 ///    than a minute, informing the network that they should no longer attempt to route over
1606 ///    the channel.
1607 ///
1608 /// Note that this may cause reentrancy through `chain::Watch::update_channel` calls or feerate
1609 /// estimate fetches.
1610 #[no_mangle]
1611 pub extern "C" fn ChannelManager_timer_tick_occurred(this_arg: &ChannelManager) {
1612         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.timer_tick_occurred()
1613 }
1614
1615 /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
1616 /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
1617 /// along the path (including in our own channel on which we received it).
1618 /// Returns false if no payment was found to fail backwards, true if the process of failing the
1619 /// HTLC backwards has been started.
1620 #[must_use]
1621 #[no_mangle]
1622 pub extern "C" fn ChannelManager_fail_htlc_backwards(this_arg: &ChannelManager, payment_hash: *const [u8; 32]) -> bool {
1623         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.fail_htlc_backwards(&::lightning::ln::PaymentHash(unsafe { *payment_hash }));
1624         ret
1625 }
1626
1627 /// Provides a payment preimage in response to [`Event::PaymentReceived`], generating any
1628 /// [`MessageSendEvent`]s needed to claim the payment.
1629 ///
1630 /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
1631 /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentReceived`
1632 /// event matches your expectation. If you fail to do so and call this method, you may provide
1633 /// the sender \"proof-of-payment\" when they did not fulfill the full expected payment.
1634 ///
1635 /// Returns whether any HTLCs were claimed, and thus if any new [`MessageSendEvent`]s are now
1636 /// pending for processing via [`get_and_clear_pending_msg_events`].
1637 ///
1638 /// [`Event::PaymentReceived`]: crate::util::events::Event::PaymentReceived
1639 /// [`create_inbound_payment`]: Self::create_inbound_payment
1640 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1641 /// [`get_and_clear_pending_msg_events`]: MessageSendEventsProvider::get_and_clear_pending_msg_events
1642 #[must_use]
1643 #[no_mangle]
1644 pub extern "C" fn ChannelManager_claim_funds(this_arg: &ChannelManager, mut payment_preimage: crate::c_types::ThirtyTwoBytes) -> bool {
1645         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.claim_funds(::lightning::ln::PaymentPreimage(payment_preimage.data));
1646         ret
1647 }
1648
1649 /// Gets the node_id held by this ChannelManager
1650 #[must_use]
1651 #[no_mangle]
1652 pub extern "C" fn ChannelManager_get_our_node_id(this_arg: &ChannelManager) -> crate::c_types::PublicKey {
1653         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_our_node_id();
1654         crate::c_types::PublicKey::from_rust(&ret)
1655 }
1656
1657 /// Called to accept a request to open a channel after [`Event::OpenChannelRequest`] has been
1658 /// triggered.
1659 ///
1660 /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted.
1661 ///
1662 /// [`Event::OpenChannelRequest`]: crate::util::events::Event::OpenChannelRequest
1663 #[must_use]
1664 #[no_mangle]
1665 pub extern "C" fn ChannelManager_accept_inbound_channel(this_arg: &ChannelManager, temporary_channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
1666         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.accept_inbound_channel(unsafe { &*temporary_channel_id});
1667         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() };
1668         local_ret
1669 }
1670
1671 /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
1672 /// to pay us.
1673 ///
1674 /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
1675 /// [`PaymentHash`] and [`PaymentPreimage`] for you.
1676 ///
1677 /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentReceived`], which
1678 /// will have the [`PaymentReceived::payment_preimage`] field filled in. That should then be
1679 /// passed directly to [`claim_funds`].
1680 ///
1681 /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
1682 ///
1683 /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
1684 /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
1685 ///
1686 /// # Note
1687 ///
1688 /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
1689 /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
1690 ///
1691 /// Errors if `min_value_msat` is greater than total bitcoin supply.
1692 ///
1693 /// [`claim_funds`]: Self::claim_funds
1694 /// [`PaymentReceived`]: events::Event::PaymentReceived
1695 /// [`PaymentReceived::payment_preimage`]: events::Event::PaymentReceived::payment_preimage
1696 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1697 #[must_use]
1698 #[no_mangle]
1699 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) -> crate::c_types::derived::CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ {
1700         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1701         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.create_inbound_payment(local_min_value_msat, invoice_expiry_delta_secs);
1702         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = o; let mut local_ret_0 = (crate::c_types::ThirtyTwoBytes { data: orig_ret_0_0.0 }, crate::c_types::ThirtyTwoBytes { data: orig_ret_0_1.0 }).into(); local_ret_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { () /*e*/ }).into() };
1703         local_ret
1704 }
1705
1706 /// Legacy version of [`create_inbound_payment`]. Use this method if you wish to share
1707 /// serialized state with LDK node(s) running 0.0.103 and earlier.
1708 ///
1709 /// # Note
1710 /// This method is deprecated and will be removed soon.
1711 ///
1712 /// [`create_inbound_payment`]: Self::create_inbound_payment
1713 #[must_use]
1714 #[no_mangle]
1715 pub extern "C" fn ChannelManager_create_inbound_payment_legacy(this_arg: &ChannelManager, mut min_value_msat: crate::c_types::derived::COption_u64Z, mut invoice_expiry_delta_secs: u32) -> crate::c_types::derived::CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ {
1716         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1717         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.create_inbound_payment_legacy(local_min_value_msat, invoice_expiry_delta_secs);
1718         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = o; let mut local_ret_0 = (crate::c_types::ThirtyTwoBytes { data: orig_ret_0_0.0 }, crate::c_types::ThirtyTwoBytes { data: orig_ret_0_1.0 }).into(); local_ret_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
1719         local_ret
1720 }
1721
1722 /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
1723 /// stored external to LDK.
1724 ///
1725 /// A [`PaymentReceived`] event will only be generated if the [`PaymentSecret`] matches a
1726 /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
1727 /// the `min_value_msat` provided here, if one is provided.
1728 ///
1729 /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
1730 /// note that LDK will not stop you from registering duplicate payment hashes for inbound
1731 /// payments.
1732 ///
1733 /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
1734 /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
1735 /// before a [`PaymentReceived`] event will be generated, ensuring that we do not provide the
1736 /// sender \"proof-of-payment\" unless they have paid the required amount.
1737 ///
1738 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
1739 /// in excess of the current time. This should roughly match the expiry time set in the invoice.
1740 /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
1741 /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
1742 /// invoices when no timeout is set.
1743 ///
1744 /// Note that we use block header time to time-out pending inbound payments (with some margin
1745 /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
1746 /// accept a payment and generate a [`PaymentReceived`] event for some time after the expiry.
1747 /// If you need exact expiry semantics, you should enforce them upon receipt of
1748 /// [`PaymentReceived`].
1749 ///
1750 /// May panic if `invoice_expiry_delta_secs` is greater than one year.
1751 ///
1752 /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry`
1753 /// set to at least [`MIN_FINAL_CLTV_EXPIRY`].
1754 ///
1755 /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
1756 /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
1757 ///
1758 /// # Note
1759 ///
1760 /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
1761 /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
1762 ///
1763 /// Errors if `min_value_msat` is greater than total bitcoin supply.
1764 ///
1765 /// [`create_inbound_payment`]: Self::create_inbound_payment
1766 /// [`PaymentReceived`]: events::Event::PaymentReceived
1767 #[must_use]
1768 #[no_mangle]
1769 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) -> crate::c_types::derived::CResult_PaymentSecretNoneZ {
1770         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1771         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.create_inbound_payment_for_hash(::lightning::ln::PaymentHash(payment_hash.data), local_min_value_msat, invoice_expiry_delta_secs);
1772         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( { () /*e*/ }).into() };
1773         local_ret
1774 }
1775
1776 /// Legacy version of [`create_inbound_payment_for_hash`]. Use this method if you wish to share
1777 /// serialized state with LDK node(s) running 0.0.103 and earlier.
1778 ///
1779 /// # Note
1780 /// This method is deprecated and will be removed soon.
1781 ///
1782 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1783 #[must_use]
1784 #[no_mangle]
1785 pub extern "C" fn ChannelManager_create_inbound_payment_for_hash_legacy(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) -> crate::c_types::derived::CResult_PaymentSecretAPIErrorZ {
1786         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1787         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.create_inbound_payment_for_hash_legacy(::lightning::ln::PaymentHash(payment_hash.data), local_min_value_msat, invoice_expiry_delta_secs);
1788         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() };
1789         local_ret
1790 }
1791
1792 /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
1793 /// previously returned from [`create_inbound_payment`].
1794 ///
1795 /// [`create_inbound_payment`]: Self::create_inbound_payment
1796 #[must_use]
1797 #[no_mangle]
1798 pub extern "C" fn ChannelManager_get_payment_preimage(this_arg: &ChannelManager, mut payment_hash: crate::c_types::ThirtyTwoBytes, mut payment_secret: crate::c_types::ThirtyTwoBytes) -> crate::c_types::derived::CResult_PaymentPreimageAPIErrorZ {
1799         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_payment_preimage(::lightning::ln::PaymentHash(payment_hash.data), ::lightning::ln::PaymentSecret(payment_secret.data));
1800         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() };
1801         local_ret
1802 }
1803
1804 /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
1805 /// are used when constructing the phantom invoice's route hints.
1806 ///
1807 /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
1808 #[must_use]
1809 #[no_mangle]
1810 pub extern "C" fn ChannelManager_get_phantom_scid(this_arg: &ChannelManager) -> u64 {
1811         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_phantom_scid();
1812         ret
1813 }
1814
1815 /// Gets route hints for use in receiving [phantom node payments].
1816 ///
1817 /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
1818 #[must_use]
1819 #[no_mangle]
1820 pub extern "C" fn ChannelManager_get_phantom_route_hints(this_arg: &ChannelManager) -> crate::lightning::ln::channelmanager::PhantomRouteHints {
1821         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_phantom_route_hints();
1822         crate::lightning::ln::channelmanager::PhantomRouteHints { inner: ObjOps::heap_alloc(ret), is_owned: true }
1823 }
1824
1825 impl From<nativeChannelManager> for crate::lightning::util::events::MessageSendEventsProvider {
1826         fn from(obj: nativeChannelManager) -> Self {
1827                 let mut rust_obj = ChannelManager { inner: ObjOps::heap_alloc(obj), is_owned: true };
1828                 let mut ret = ChannelManager_as_MessageSendEventsProvider(&rust_obj);
1829                 // 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
1830                 rust_obj.inner = core::ptr::null_mut();
1831                 ret.free = Some(ChannelManager_free_void);
1832                 ret
1833         }
1834 }
1835 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
1836 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
1837 #[no_mangle]
1838 pub extern "C" fn ChannelManager_as_MessageSendEventsProvider(this_arg: &ChannelManager) -> crate::lightning::util::events::MessageSendEventsProvider {
1839         crate::lightning::util::events::MessageSendEventsProvider {
1840                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
1841                 free: None,
1842                 get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
1843         }
1844 }
1845
1846 #[must_use]
1847 extern "C" fn ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
1848         let mut ret = <nativeChannelManager as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1849         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
1850         local_ret.into()
1851 }
1852
1853 impl From<nativeChannelManager> for crate::lightning::util::events::EventsProvider {
1854         fn from(obj: nativeChannelManager) -> Self {
1855                 let mut rust_obj = ChannelManager { inner: ObjOps::heap_alloc(obj), is_owned: true };
1856                 let mut ret = ChannelManager_as_EventsProvider(&rust_obj);
1857                 // 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
1858                 rust_obj.inner = core::ptr::null_mut();
1859                 ret.free = Some(ChannelManager_free_void);
1860                 ret
1861         }
1862 }
1863 /// Constructs a new EventsProvider which calls the relevant methods on this_arg.
1864 /// This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
1865 #[no_mangle]
1866 pub extern "C" fn ChannelManager_as_EventsProvider(this_arg: &ChannelManager) -> crate::lightning::util::events::EventsProvider {
1867         crate::lightning::util::events::EventsProvider {
1868                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
1869                 free: None,
1870                 process_pending_events: ChannelManager_EventsProvider_process_pending_events,
1871         }
1872 }
1873
1874 extern "C" fn ChannelManager_EventsProvider_process_pending_events(this_arg: *const c_void, mut handler: crate::lightning::util::events::EventHandler) {
1875         <nativeChannelManager as lightning::util::events::EventsProvider<>>::process_pending_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, handler)
1876 }
1877
1878 impl From<nativeChannelManager> for crate::lightning::chain::Listen {
1879         fn from(obj: nativeChannelManager) -> Self {
1880                 let mut rust_obj = ChannelManager { inner: ObjOps::heap_alloc(obj), is_owned: true };
1881                 let mut ret = ChannelManager_as_Listen(&rust_obj);
1882                 // 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
1883                 rust_obj.inner = core::ptr::null_mut();
1884                 ret.free = Some(ChannelManager_free_void);
1885                 ret
1886         }
1887 }
1888 /// Constructs a new Listen which calls the relevant methods on this_arg.
1889 /// This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
1890 #[no_mangle]
1891 pub extern "C" fn ChannelManager_as_Listen(this_arg: &ChannelManager) -> crate::lightning::chain::Listen {
1892         crate::lightning::chain::Listen {
1893                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
1894                 free: None,
1895                 block_connected: ChannelManager_Listen_block_connected,
1896                 block_disconnected: ChannelManager_Listen_block_disconnected,
1897         }
1898 }
1899
1900 extern "C" fn ChannelManager_Listen_block_connected(this_arg: *const c_void, mut block: crate::c_types::u8slice, mut height: u32) {
1901         <nativeChannelManager as lightning::chain::Listen<>>::block_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(block.to_slice()).unwrap(), height)
1902 }
1903 extern "C" fn ChannelManager_Listen_block_disconnected(this_arg: *const c_void, header: *const [u8; 80], mut height: u32) {
1904         <nativeChannelManager as lightning::chain::Listen<>>::block_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
1905 }
1906
1907 impl From<nativeChannelManager> for crate::lightning::chain::Confirm {
1908         fn from(obj: nativeChannelManager) -> Self {
1909                 let mut rust_obj = ChannelManager { inner: ObjOps::heap_alloc(obj), is_owned: true };
1910                 let mut ret = ChannelManager_as_Confirm(&rust_obj);
1911                 // 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
1912                 rust_obj.inner = core::ptr::null_mut();
1913                 ret.free = Some(ChannelManager_free_void);
1914                 ret
1915         }
1916 }
1917 /// Constructs a new Confirm which calls the relevant methods on this_arg.
1918 /// This copies the `inner` pointer in this_arg and thus the returned Confirm must be freed before this_arg is
1919 #[no_mangle]
1920 pub extern "C" fn ChannelManager_as_Confirm(this_arg: &ChannelManager) -> crate::lightning::chain::Confirm {
1921         crate::lightning::chain::Confirm {
1922                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
1923                 free: None,
1924                 transactions_confirmed: ChannelManager_Confirm_transactions_confirmed,
1925                 transaction_unconfirmed: ChannelManager_Confirm_transaction_unconfirmed,
1926                 best_block_updated: ChannelManager_Confirm_best_block_updated,
1927                 get_relevant_txids: ChannelManager_Confirm_get_relevant_txids,
1928         }
1929 }
1930
1931 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) {
1932         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 }); };
1933         <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)
1934 }
1935 extern "C" fn ChannelManager_Confirm_best_block_updated(this_arg: *const c_void, header: *const [u8; 80], mut height: u32) {
1936         <nativeChannelManager as lightning::chain::Confirm<>>::best_block_updated(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
1937 }
1938 #[must_use]
1939 extern "C" fn ChannelManager_Confirm_get_relevant_txids(this_arg: *const c_void) -> crate::c_types::derived::CVec_TxidZ {
1940         let mut ret = <nativeChannelManager as lightning::chain::Confirm<>>::get_relevant_txids(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1941         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::c_types::ThirtyTwoBytes { data: item.into_inner() } }); };
1942         local_ret.into()
1943 }
1944 extern "C" fn ChannelManager_Confirm_transaction_unconfirmed(this_arg: *const c_void, txid: *const [u8; 32]) {
1945         <nativeChannelManager as lightning::chain::Confirm<>>::transaction_unconfirmed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::hash_types::Txid::from_slice(&unsafe { &*txid }[..]).unwrap())
1946 }
1947
1948 /// Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
1949 /// indicating whether persistence is necessary. Only one listener on
1950 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
1951 /// up.
1952 ///
1953 /// Note that this method is not available with the `no-std` feature.
1954 #[must_use]
1955 #[no_mangle]
1956 pub extern "C" fn ChannelManager_await_persistable_update_timeout(this_arg: &ChannelManager, mut max_wait: u64) -> bool {
1957         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.await_persistable_update_timeout(core::time::Duration::from_secs(max_wait));
1958         ret
1959 }
1960
1961 /// Blocks until ChannelManager needs to be persisted. Only one listener on
1962 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
1963 /// up.
1964 #[no_mangle]
1965 pub extern "C" fn ChannelManager_await_persistable_update(this_arg: &ChannelManager) {
1966         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.await_persistable_update()
1967 }
1968
1969 /// Gets the latest best block which was connected either via the [`chain::Listen`] or
1970 /// [`chain::Confirm`] interfaces.
1971 #[must_use]
1972 #[no_mangle]
1973 pub extern "C" fn ChannelManager_current_best_block(this_arg: &ChannelManager) -> crate::lightning::chain::BestBlock {
1974         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.current_best_block();
1975         crate::lightning::chain::BestBlock { inner: ObjOps::heap_alloc(ret), is_owned: true }
1976 }
1977
1978 impl From<nativeChannelManager> for crate::lightning::ln::msgs::ChannelMessageHandler {
1979         fn from(obj: nativeChannelManager) -> Self {
1980                 let mut rust_obj = ChannelManager { inner: ObjOps::heap_alloc(obj), is_owned: true };
1981                 let mut ret = ChannelManager_as_ChannelMessageHandler(&rust_obj);
1982                 // 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
1983                 rust_obj.inner = core::ptr::null_mut();
1984                 ret.free = Some(ChannelManager_free_void);
1985                 ret
1986         }
1987 }
1988 /// Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
1989 /// This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
1990 #[no_mangle]
1991 pub extern "C" fn ChannelManager_as_ChannelMessageHandler(this_arg: &ChannelManager) -> crate::lightning::ln::msgs::ChannelMessageHandler {
1992         crate::lightning::ln::msgs::ChannelMessageHandler {
1993                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
1994                 free: None,
1995                 handle_open_channel: ChannelManager_ChannelMessageHandler_handle_open_channel,
1996                 handle_accept_channel: ChannelManager_ChannelMessageHandler_handle_accept_channel,
1997                 handle_funding_created: ChannelManager_ChannelMessageHandler_handle_funding_created,
1998                 handle_funding_signed: ChannelManager_ChannelMessageHandler_handle_funding_signed,
1999                 handle_funding_locked: ChannelManager_ChannelMessageHandler_handle_funding_locked,
2000                 handle_shutdown: ChannelManager_ChannelMessageHandler_handle_shutdown,
2001                 handle_closing_signed: ChannelManager_ChannelMessageHandler_handle_closing_signed,
2002                 handle_update_add_htlc: ChannelManager_ChannelMessageHandler_handle_update_add_htlc,
2003                 handle_update_fulfill_htlc: ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc,
2004                 handle_update_fail_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_htlc,
2005                 handle_update_fail_malformed_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc,
2006                 handle_commitment_signed: ChannelManager_ChannelMessageHandler_handle_commitment_signed,
2007                 handle_revoke_and_ack: ChannelManager_ChannelMessageHandler_handle_revoke_and_ack,
2008                 handle_update_fee: ChannelManager_ChannelMessageHandler_handle_update_fee,
2009                 handle_announcement_signatures: ChannelManager_ChannelMessageHandler_handle_announcement_signatures,
2010                 peer_disconnected: ChannelManager_ChannelMessageHandler_peer_disconnected,
2011                 peer_connected: ChannelManager_ChannelMessageHandler_peer_connected,
2012                 handle_channel_reestablish: ChannelManager_ChannelMessageHandler_handle_channel_reestablish,
2013                 handle_channel_update: ChannelManager_ChannelMessageHandler_handle_channel_update,
2014                 handle_error: ChannelManager_ChannelMessageHandler_handle_error,
2015                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
2016                         this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
2017                         free: None,
2018                         get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
2019                 },
2020         }
2021 }
2022
2023 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) {
2024         <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()) }, msg.get_native_ref())
2025 }
2026 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) {
2027         <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()) }, msg.get_native_ref())
2028 }
2029 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) {
2030         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_created(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2031 }
2032 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) {
2033         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2034 }
2035 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) {
2036         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_locked(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2037 }
2038 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) {
2039         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_shutdown(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), their_features.get_native_ref(), msg.get_native_ref())
2040 }
2041 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) {
2042         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_closing_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2043 }
2044 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) {
2045         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_add_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2046 }
2047 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) {
2048         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fulfill_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2049 }
2050 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) {
2051         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2052 }
2053 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) {
2054         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_malformed_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2055 }
2056 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) {
2057         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_commitment_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2058 }
2059 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) {
2060         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_revoke_and_ack(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2061 }
2062 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) {
2063         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fee(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2064 }
2065 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) {
2066         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_announcement_signatures(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2067 }
2068 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) {
2069         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2070 }
2071 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) {
2072         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_reestablish(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2073 }
2074 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) {
2075         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), no_connection_possible)
2076 }
2077 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) {
2078         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), init_msg.get_native_ref())
2079 }
2080 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) {
2081         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_error(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), msg.get_native_ref())
2082 }
2083
2084 #[no_mangle]
2085 /// Serialize the CounterpartyForwardingInfo object into a byte array which can be read by CounterpartyForwardingInfo_read
2086 pub extern "C" fn CounterpartyForwardingInfo_write(obj: &CounterpartyForwardingInfo) -> crate::c_types::derived::CVec_u8Z {
2087         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
2088 }
2089 #[no_mangle]
2090 pub(crate) extern "C" fn CounterpartyForwardingInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
2091         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeCounterpartyForwardingInfo) })
2092 }
2093 #[no_mangle]
2094 /// Read a CounterpartyForwardingInfo from a byte array, created by CounterpartyForwardingInfo_write
2095 pub extern "C" fn CounterpartyForwardingInfo_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_CounterpartyForwardingInfoDecodeErrorZ {
2096         let res: Result<lightning::ln::channelmanager::CounterpartyForwardingInfo, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
2097         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::channelmanager::CounterpartyForwardingInfo { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2098         local_res
2099 }
2100 #[no_mangle]
2101 /// Serialize the ChannelCounterparty object into a byte array which can be read by ChannelCounterparty_read
2102 pub extern "C" fn ChannelCounterparty_write(obj: &ChannelCounterparty) -> crate::c_types::derived::CVec_u8Z {
2103         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
2104 }
2105 #[no_mangle]
2106 pub(crate) extern "C" fn ChannelCounterparty_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
2107         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelCounterparty) })
2108 }
2109 #[no_mangle]
2110 /// Read a ChannelCounterparty from a byte array, created by ChannelCounterparty_write
2111 pub extern "C" fn ChannelCounterparty_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelCounterpartyDecodeErrorZ {
2112         let res: Result<lightning::ln::channelmanager::ChannelCounterparty, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
2113         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::channelmanager::ChannelCounterparty { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2114         local_res
2115 }
2116 #[no_mangle]
2117 /// Serialize the ChannelDetails object into a byte array which can be read by ChannelDetails_read
2118 pub extern "C" fn ChannelDetails_write(obj: &ChannelDetails) -> crate::c_types::derived::CVec_u8Z {
2119         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
2120 }
2121 #[no_mangle]
2122 pub(crate) extern "C" fn ChannelDetails_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
2123         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelDetails) })
2124 }
2125 #[no_mangle]
2126 /// Read a ChannelDetails from a byte array, created by ChannelDetails_write
2127 pub extern "C" fn ChannelDetails_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelDetailsDecodeErrorZ {
2128         let res: Result<lightning::ln::channelmanager::ChannelDetails, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
2129         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::channelmanager::ChannelDetails { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2130         local_res
2131 }
2132 #[no_mangle]
2133 /// Serialize the PhantomRouteHints object into a byte array which can be read by PhantomRouteHints_read
2134 pub extern "C" fn PhantomRouteHints_write(obj: &PhantomRouteHints) -> crate::c_types::derived::CVec_u8Z {
2135         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
2136 }
2137 #[no_mangle]
2138 pub(crate) extern "C" fn PhantomRouteHints_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
2139         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativePhantomRouteHints) })
2140 }
2141 #[no_mangle]
2142 /// Read a PhantomRouteHints from a byte array, created by PhantomRouteHints_write
2143 pub extern "C" fn PhantomRouteHints_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_PhantomRouteHintsDecodeErrorZ {
2144         let res: Result<lightning::ln::channelmanager::PhantomRouteHints, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
2145         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::channelmanager::PhantomRouteHints { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2146         local_res
2147 }
2148 #[no_mangle]
2149 /// Serialize the ChannelManager object into a byte array which can be read by ChannelManager_read
2150 pub extern "C" fn ChannelManager_write(obj: &ChannelManager) -> crate::c_types::derived::CVec_u8Z {
2151         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
2152 }
2153 #[no_mangle]
2154 pub(crate) extern "C" fn ChannelManager_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
2155         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelManager) })
2156 }
2157
2158 use lightning::ln::channelmanager::ChannelManagerReadArgs as nativeChannelManagerReadArgsImport;
2159 pub(crate) 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>;
2160
2161 /// Arguments for the creation of a ChannelManager that are not deserialized.
2162 ///
2163 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
2164 /// is:
2165 /// 1) Deserialize all stored [`ChannelMonitor`]s.
2166 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
2167 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
2168 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
2169 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
2170 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
2171 ///    same way you would handle a [`chain::Filter`] call using
2172 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
2173 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
2174 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
2175 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
2176 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
2177 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
2178 ///    the next step.
2179 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
2180 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
2181 ///
2182 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
2183 /// call any other methods on the newly-deserialized [`ChannelManager`].
2184 ///
2185 /// Note that because some channels may be closed during deserialization, it is critical that you
2186 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
2187 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
2188 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
2189 /// not force-close the same channels but consider them live), you may end up revoking a state for
2190 /// which you've already broadcasted the transaction.
2191 ///
2192 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
2193 #[must_use]
2194 #[repr(C)]
2195 pub struct ChannelManagerReadArgs {
2196         /// A pointer to the opaque Rust object.
2197
2198         /// Nearly everywhere, inner must be non-null, however in places where
2199         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
2200         pub inner: *mut nativeChannelManagerReadArgs,
2201         /// Indicates that this is the only struct which contains the same pointer.
2202
2203         /// Rust functions which take ownership of an object provided via an argument require
2204         /// this to be true and invalidate the object pointed to by inner.
2205         pub is_owned: bool,
2206 }
2207
2208 impl Drop for ChannelManagerReadArgs {
2209         fn drop(&mut self) {
2210                 if self.is_owned && !<*mut nativeChannelManagerReadArgs>::is_null(self.inner) {
2211                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
2212                 }
2213         }
2214 }
2215 /// Frees any resources used by the ChannelManagerReadArgs, if is_owned is set and inner is non-NULL.
2216 #[no_mangle]
2217 pub extern "C" fn ChannelManagerReadArgs_free(this_obj: ChannelManagerReadArgs) { }
2218 #[allow(unused)]
2219 /// Used only if an object of this type is returned as a trait impl by a method
2220 pub(crate) extern "C" fn ChannelManagerReadArgs_free_void(this_ptr: *mut c_void) {
2221         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManagerReadArgs); }
2222 }
2223 #[allow(unused)]
2224 impl ChannelManagerReadArgs {
2225         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelManagerReadArgs {
2226                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
2227         }
2228         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelManagerReadArgs {
2229                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
2230         }
2231         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2232         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManagerReadArgs {
2233                 assert!(self.is_owned);
2234                 let ret = ObjOps::untweak_ptr(self.inner);
2235                 self.inner = core::ptr::null_mut();
2236                 ret
2237         }
2238 }
2239 /// The keys provider which will give us relevant keys. Some keys will be loaded during
2240 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
2241 /// signing data.
2242 #[no_mangle]
2243 pub extern "C" fn ChannelManagerReadArgs_get_keys_manager(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::keysinterface::KeysInterface {
2244         let mut inner_val = &mut this_ptr.get_native_mut_ref().keys_manager;
2245         inner_val
2246 }
2247 /// The keys provider which will give us relevant keys. Some keys will be loaded during
2248 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
2249 /// signing data.
2250 #[no_mangle]
2251 pub extern "C" fn ChannelManagerReadArgs_set_keys_manager(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::keysinterface::KeysInterface) {
2252         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.keys_manager = val;
2253 }
2254 /// The fee_estimator for use in the ChannelManager in the future.
2255 ///
2256 /// No calls to the FeeEstimator will be made during deserialization.
2257 #[no_mangle]
2258 pub extern "C" fn ChannelManagerReadArgs_get_fee_estimator(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::chaininterface::FeeEstimator {
2259         let mut inner_val = &mut this_ptr.get_native_mut_ref().fee_estimator;
2260         inner_val
2261 }
2262 /// The fee_estimator for use in the ChannelManager in the future.
2263 ///
2264 /// No calls to the FeeEstimator will be made during deserialization.
2265 #[no_mangle]
2266 pub extern "C" fn ChannelManagerReadArgs_set_fee_estimator(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::chaininterface::FeeEstimator) {
2267         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.fee_estimator = val;
2268 }
2269 /// The chain::Watch for use in the ChannelManager in the future.
2270 ///
2271 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
2272 /// you have deserialized ChannelMonitors separately and will add them to your
2273 /// chain::Watch after deserializing this ChannelManager.
2274 #[no_mangle]
2275 pub extern "C" fn ChannelManagerReadArgs_get_chain_monitor(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::Watch {
2276         let mut inner_val = &mut this_ptr.get_native_mut_ref().chain_monitor;
2277         inner_val
2278 }
2279 /// The chain::Watch for use in the ChannelManager in the future.
2280 ///
2281 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
2282 /// you have deserialized ChannelMonitors separately and will add them to your
2283 /// chain::Watch after deserializing this ChannelManager.
2284 #[no_mangle]
2285 pub extern "C" fn ChannelManagerReadArgs_set_chain_monitor(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::Watch) {
2286         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.chain_monitor = val;
2287 }
2288 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
2289 /// used to broadcast the latest local commitment transactions of channels which must be
2290 /// force-closed during deserialization.
2291 #[no_mangle]
2292 pub extern "C" fn ChannelManagerReadArgs_get_tx_broadcaster(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::chaininterface::BroadcasterInterface {
2293         let mut inner_val = &mut this_ptr.get_native_mut_ref().tx_broadcaster;
2294         inner_val
2295 }
2296 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
2297 /// used to broadcast the latest local commitment transactions of channels which must be
2298 /// force-closed during deserialization.
2299 #[no_mangle]
2300 pub extern "C" fn ChannelManagerReadArgs_set_tx_broadcaster(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::chaininterface::BroadcasterInterface) {
2301         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.tx_broadcaster = val;
2302 }
2303 /// The Logger for use in the ChannelManager and which may be used to log information during
2304 /// deserialization.
2305 #[no_mangle]
2306 pub extern "C" fn ChannelManagerReadArgs_get_logger(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::util::logger::Logger {
2307         let mut inner_val = &mut this_ptr.get_native_mut_ref().logger;
2308         inner_val
2309 }
2310 /// The Logger for use in the ChannelManager and which may be used to log information during
2311 /// deserialization.
2312 #[no_mangle]
2313 pub extern "C" fn ChannelManagerReadArgs_set_logger(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::util::logger::Logger) {
2314         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.logger = val;
2315 }
2316 /// Default settings used for new channels. Any existing channels will continue to use the
2317 /// runtime settings which were stored when the ChannelManager was serialized.
2318 #[no_mangle]
2319 pub extern "C" fn ChannelManagerReadArgs_get_default_config(this_ptr: &ChannelManagerReadArgs) -> crate::lightning::util::config::UserConfig {
2320         let mut inner_val = &mut this_ptr.get_native_mut_ref().default_config;
2321         crate::lightning::util::config::UserConfig { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::util::config::UserConfig<>) as *mut _) }, is_owned: false }
2322 }
2323 /// Default settings used for new channels. Any existing channels will continue to use the
2324 /// runtime settings which were stored when the ChannelManager was serialized.
2325 #[no_mangle]
2326 pub extern "C" fn ChannelManagerReadArgs_set_default_config(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::util::config::UserConfig) {
2327         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.default_config = *unsafe { Box::from_raw(val.take_inner()) };
2328 }
2329 /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
2330 /// HashMap for you. This is primarily useful for C bindings where it is not practical to
2331 /// populate a HashMap directly from C.
2332 #[must_use]
2333 #[no_mangle]
2334 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 {
2335         let mut local_channel_monitors = Vec::new(); for mut item in channel_monitors.into_rust().drain(..) { local_channel_monitors.push( { item.get_native_mut_ref() }); };
2336         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);
2337         ChannelManagerReadArgs { inner: ObjOps::heap_alloc(ret), is_owned: true }
2338 }
2339
2340 #[no_mangle]
2341 /// Read a C2Tuple_BlockHashChannelManagerZ from a byte array, created by C2Tuple_BlockHashChannelManagerZ_write
2342 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 {
2343         let arg_conv = *unsafe { Box::from_raw(arg.take_inner()) };
2344         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);
2345         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: ObjOps::heap_alloc(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: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2346         local_res
2347 }