Update CI/Cargo.toml references to 0.0.122
[ldk-c-bindings] / lightning-c-bindings / src / lightning / util / config.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 //! Various user-configurable channel limits and settings which ChannelManager
10 //! applies for you.
11
12 use alloc::str::FromStr;
13 use alloc::string::String;
14 use core::ffi::c_void;
15 use core::convert::Infallible;
16 use bitcoin::hashes::Hash;
17 use crate::c_types::*;
18 #[cfg(feature="no-std")]
19 use alloc::{vec::Vec, boxed::Box};
20
21
22 use lightning::util::config::ChannelHandshakeConfig as nativeChannelHandshakeConfigImport;
23 pub(crate) type nativeChannelHandshakeConfig = nativeChannelHandshakeConfigImport;
24
25 /// Configuration we set when applicable.
26 ///
27 /// Default::default() provides sane defaults.
28 #[must_use]
29 #[repr(C)]
30 pub struct ChannelHandshakeConfig {
31         /// A pointer to the opaque Rust object.
32
33         /// Nearly everywhere, inner must be non-null, however in places where
34         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
35         pub inner: *mut nativeChannelHandshakeConfig,
36         /// Indicates that this is the only struct which contains the same pointer.
37
38         /// Rust functions which take ownership of an object provided via an argument require
39         /// this to be true and invalidate the object pointed to by inner.
40         pub is_owned: bool,
41 }
42
43 impl Drop for ChannelHandshakeConfig {
44         fn drop(&mut self) {
45                 if self.is_owned && !<*mut nativeChannelHandshakeConfig>::is_null(self.inner) {
46                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
47                 }
48         }
49 }
50 /// Frees any resources used by the ChannelHandshakeConfig, if is_owned is set and inner is non-NULL.
51 #[no_mangle]
52 pub extern "C" fn ChannelHandshakeConfig_free(this_obj: ChannelHandshakeConfig) { }
53 #[allow(unused)]
54 /// Used only if an object of this type is returned as a trait impl by a method
55 pub(crate) extern "C" fn ChannelHandshakeConfig_free_void(this_ptr: *mut c_void) {
56         let _ = unsafe { Box::from_raw(this_ptr as *mut nativeChannelHandshakeConfig) };
57 }
58 #[allow(unused)]
59 impl ChannelHandshakeConfig {
60         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelHandshakeConfig {
61                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
62         }
63         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelHandshakeConfig {
64                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
65         }
66         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
67         pub(crate) fn take_inner(mut self) -> *mut nativeChannelHandshakeConfig {
68                 assert!(self.is_owned);
69                 let ret = ObjOps::untweak_ptr(self.inner);
70                 self.inner = core::ptr::null_mut();
71                 ret
72         }
73 }
74 /// Confirmations we will wait for before considering the channel locked in.
75 /// Applied only for inbound channels (see ChannelHandshakeLimits::max_minimum_depth for the
76 /// equivalent limit applied to outbound channels).
77 ///
78 /// A lower-bound of 1 is applied, requiring all channels to have a confirmed commitment
79 /// transaction before operation. If you wish to accept channels with zero confirmations, see
80 /// [`UserConfig::manually_accept_inbound_channels`] and
81 /// [`ChannelManager::accept_inbound_channel_from_trusted_peer_0conf`].
82 ///
83 /// Default value: 6.
84 ///
85 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
86 /// [`ChannelManager::accept_inbound_channel_from_trusted_peer_0conf`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel_from_trusted_peer_0conf
87 #[no_mangle]
88 pub extern "C" fn ChannelHandshakeConfig_get_minimum_depth(this_ptr: &ChannelHandshakeConfig) -> u32 {
89         let mut inner_val = &mut this_ptr.get_native_mut_ref().minimum_depth;
90         *inner_val
91 }
92 /// Confirmations we will wait for before considering the channel locked in.
93 /// Applied only for inbound channels (see ChannelHandshakeLimits::max_minimum_depth for the
94 /// equivalent limit applied to outbound channels).
95 ///
96 /// A lower-bound of 1 is applied, requiring all channels to have a confirmed commitment
97 /// transaction before operation. If you wish to accept channels with zero confirmations, see
98 /// [`UserConfig::manually_accept_inbound_channels`] and
99 /// [`ChannelManager::accept_inbound_channel_from_trusted_peer_0conf`].
100 ///
101 /// Default value: 6.
102 ///
103 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
104 /// [`ChannelManager::accept_inbound_channel_from_trusted_peer_0conf`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel_from_trusted_peer_0conf
105 #[no_mangle]
106 pub extern "C" fn ChannelHandshakeConfig_set_minimum_depth(this_ptr: &mut ChannelHandshakeConfig, mut val: u32) {
107         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.minimum_depth = val;
108 }
109 /// Set to the number of blocks we require our counterparty to wait to claim their money (ie
110 /// the number of blocks we have to punish our counterparty if they broadcast a revoked
111 /// transaction).
112 ///
113 /// This is one of the main parameters of our security model. We (or one of our watchtowers) MUST
114 /// be online to check for revoked transactions on-chain at least once every our_to_self_delay
115 /// blocks (minus some margin to allow us enough time to broadcast and confirm a transaction,
116 /// possibly with time in between to RBF the spending transaction).
117 ///
118 /// Meanwhile, asking for a too high delay, we bother peer to freeze funds for nothing in
119 /// case of an honest unilateral channel close, which implicitly decrease the economic value of
120 /// our channel.
121 ///
122 /// Default value: [`BREAKDOWN_TIMEOUT`], we enforce it as a minimum at channel opening so you
123 /// can tweak config to ask for more security, not less.
124 #[no_mangle]
125 pub extern "C" fn ChannelHandshakeConfig_get_our_to_self_delay(this_ptr: &ChannelHandshakeConfig) -> u16 {
126         let mut inner_val = &mut this_ptr.get_native_mut_ref().our_to_self_delay;
127         *inner_val
128 }
129 /// Set to the number of blocks we require our counterparty to wait to claim their money (ie
130 /// the number of blocks we have to punish our counterparty if they broadcast a revoked
131 /// transaction).
132 ///
133 /// This is one of the main parameters of our security model. We (or one of our watchtowers) MUST
134 /// be online to check for revoked transactions on-chain at least once every our_to_self_delay
135 /// blocks (minus some margin to allow us enough time to broadcast and confirm a transaction,
136 /// possibly with time in between to RBF the spending transaction).
137 ///
138 /// Meanwhile, asking for a too high delay, we bother peer to freeze funds for nothing in
139 /// case of an honest unilateral channel close, which implicitly decrease the economic value of
140 /// our channel.
141 ///
142 /// Default value: [`BREAKDOWN_TIMEOUT`], we enforce it as a minimum at channel opening so you
143 /// can tweak config to ask for more security, not less.
144 #[no_mangle]
145 pub extern "C" fn ChannelHandshakeConfig_set_our_to_self_delay(this_ptr: &mut ChannelHandshakeConfig, mut val: u16) {
146         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.our_to_self_delay = val;
147 }
148 /// Set to the smallest value HTLC we will accept to process.
149 ///
150 /// This value is sent to our counterparty on channel-open and we close the channel any time
151 /// our counterparty misbehaves by sending us an HTLC with a value smaller than this.
152 ///
153 /// Default value: 1. If the value is less than 1, it is ignored and set to 1, as is required
154 /// by the protocol.
155 #[no_mangle]
156 pub extern "C" fn ChannelHandshakeConfig_get_our_htlc_minimum_msat(this_ptr: &ChannelHandshakeConfig) -> u64 {
157         let mut inner_val = &mut this_ptr.get_native_mut_ref().our_htlc_minimum_msat;
158         *inner_val
159 }
160 /// Set to the smallest value HTLC we will accept to process.
161 ///
162 /// This value is sent to our counterparty on channel-open and we close the channel any time
163 /// our counterparty misbehaves by sending us an HTLC with a value smaller than this.
164 ///
165 /// Default value: 1. If the value is less than 1, it is ignored and set to 1, as is required
166 /// by the protocol.
167 #[no_mangle]
168 pub extern "C" fn ChannelHandshakeConfig_set_our_htlc_minimum_msat(this_ptr: &mut ChannelHandshakeConfig, mut val: u64) {
169         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.our_htlc_minimum_msat = val;
170 }
171 /// Sets the percentage of the channel value we will cap the total value of outstanding inbound
172 /// HTLCs to.
173 ///
174 /// This can be set to a value between 1-100, where the value corresponds to the percent of the
175 /// channel value in whole percentages.
176 ///
177 /// Note that:
178 /// * If configured to another value than the default value 10, any new channels created with
179 /// the non default value will cause versions of LDK prior to 0.0.104 to refuse to read the
180 /// `ChannelManager`.
181 ///
182 /// * This caps the total value for inbound HTLCs in-flight only, and there's currently
183 /// no way to configure the cap for the total value of outbound HTLCs in-flight.
184 ///
185 /// * The requirements for your node being online to ensure the safety of HTLC-encumbered funds
186 /// are different from the non-HTLC-encumbered funds. This makes this an important knob to
187 /// restrict exposure to loss due to being offline for too long.
188 /// See [`ChannelHandshakeConfig::our_to_self_delay`] and [`ChannelConfig::cltv_expiry_delta`]
189 /// for more information.
190 ///
191 /// Default value: 10.
192 /// Minimum value: 1, any values less than 1 will be treated as 1 instead.
193 /// Maximum value: 100, any values larger than 100 will be treated as 100 instead.
194 #[no_mangle]
195 pub extern "C" fn ChannelHandshakeConfig_get_max_inbound_htlc_value_in_flight_percent_of_channel(this_ptr: &ChannelHandshakeConfig) -> u8 {
196         let mut inner_val = &mut this_ptr.get_native_mut_ref().max_inbound_htlc_value_in_flight_percent_of_channel;
197         *inner_val
198 }
199 /// Sets the percentage of the channel value we will cap the total value of outstanding inbound
200 /// HTLCs to.
201 ///
202 /// This can be set to a value between 1-100, where the value corresponds to the percent of the
203 /// channel value in whole percentages.
204 ///
205 /// Note that:
206 /// * If configured to another value than the default value 10, any new channels created with
207 /// the non default value will cause versions of LDK prior to 0.0.104 to refuse to read the
208 /// `ChannelManager`.
209 ///
210 /// * This caps the total value for inbound HTLCs in-flight only, and there's currently
211 /// no way to configure the cap for the total value of outbound HTLCs in-flight.
212 ///
213 /// * The requirements for your node being online to ensure the safety of HTLC-encumbered funds
214 /// are different from the non-HTLC-encumbered funds. This makes this an important knob to
215 /// restrict exposure to loss due to being offline for too long.
216 /// See [`ChannelHandshakeConfig::our_to_self_delay`] and [`ChannelConfig::cltv_expiry_delta`]
217 /// for more information.
218 ///
219 /// Default value: 10.
220 /// Minimum value: 1, any values less than 1 will be treated as 1 instead.
221 /// Maximum value: 100, any values larger than 100 will be treated as 100 instead.
222 #[no_mangle]
223 pub extern "C" fn ChannelHandshakeConfig_set_max_inbound_htlc_value_in_flight_percent_of_channel(this_ptr: &mut ChannelHandshakeConfig, mut val: u8) {
224         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.max_inbound_htlc_value_in_flight_percent_of_channel = val;
225 }
226 /// If set, we attempt to negotiate the `scid_privacy` (referred to as `scid_alias` in the
227 /// BOLTs) option for outbound private channels. This provides better privacy by not including
228 /// our real on-chain channel UTXO in each invoice and requiring that our counterparty only
229 /// relay HTLCs to us using the channel's SCID alias.
230 ///
231 /// If this option is set, channels may be created that will not be readable by LDK versions
232 /// prior to 0.0.106, causing [`ChannelManager`]'s read method to return a
233 /// [`DecodeError::InvalidValue`].
234 ///
235 /// Note that setting this to true does *not* prevent us from opening channels with
236 /// counterparties that do not support the `scid_alias` option; we will simply fall back to a
237 /// private channel without that option.
238 ///
239 /// Ignored if the channel is negotiated to be announced, see
240 /// [`ChannelHandshakeConfig::announced_channel`] and
241 /// [`ChannelHandshakeLimits::force_announced_channel_preference`] for more.
242 ///
243 /// Default value: false. This value is likely to change to true in the future.
244 ///
245 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
246 /// [`DecodeError::InvalidValue`]: crate::ln::msgs::DecodeError::InvalidValue
247 #[no_mangle]
248 pub extern "C" fn ChannelHandshakeConfig_get_negotiate_scid_privacy(this_ptr: &ChannelHandshakeConfig) -> bool {
249         let mut inner_val = &mut this_ptr.get_native_mut_ref().negotiate_scid_privacy;
250         *inner_val
251 }
252 /// If set, we attempt to negotiate the `scid_privacy` (referred to as `scid_alias` in the
253 /// BOLTs) option for outbound private channels. This provides better privacy by not including
254 /// our real on-chain channel UTXO in each invoice and requiring that our counterparty only
255 /// relay HTLCs to us using the channel's SCID alias.
256 ///
257 /// If this option is set, channels may be created that will not be readable by LDK versions
258 /// prior to 0.0.106, causing [`ChannelManager`]'s read method to return a
259 /// [`DecodeError::InvalidValue`].
260 ///
261 /// Note that setting this to true does *not* prevent us from opening channels with
262 /// counterparties that do not support the `scid_alias` option; we will simply fall back to a
263 /// private channel without that option.
264 ///
265 /// Ignored if the channel is negotiated to be announced, see
266 /// [`ChannelHandshakeConfig::announced_channel`] and
267 /// [`ChannelHandshakeLimits::force_announced_channel_preference`] for more.
268 ///
269 /// Default value: false. This value is likely to change to true in the future.
270 ///
271 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
272 /// [`DecodeError::InvalidValue`]: crate::ln::msgs::DecodeError::InvalidValue
273 #[no_mangle]
274 pub extern "C" fn ChannelHandshakeConfig_set_negotiate_scid_privacy(this_ptr: &mut ChannelHandshakeConfig, mut val: bool) {
275         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.negotiate_scid_privacy = val;
276 }
277 /// Set to announce the channel publicly and notify all nodes that they can route via this
278 /// channel.
279 ///
280 /// This should only be set to true for nodes which expect to be online reliably.
281 ///
282 /// As the node which funds a channel picks this value this will only apply for new outbound
283 /// channels unless [`ChannelHandshakeLimits::force_announced_channel_preference`] is set.
284 ///
285 /// Default value: false.
286 #[no_mangle]
287 pub extern "C" fn ChannelHandshakeConfig_get_announced_channel(this_ptr: &ChannelHandshakeConfig) -> bool {
288         let mut inner_val = &mut this_ptr.get_native_mut_ref().announced_channel;
289         *inner_val
290 }
291 /// Set to announce the channel publicly and notify all nodes that they can route via this
292 /// channel.
293 ///
294 /// This should only be set to true for nodes which expect to be online reliably.
295 ///
296 /// As the node which funds a channel picks this value this will only apply for new outbound
297 /// channels unless [`ChannelHandshakeLimits::force_announced_channel_preference`] is set.
298 ///
299 /// Default value: false.
300 #[no_mangle]
301 pub extern "C" fn ChannelHandshakeConfig_set_announced_channel(this_ptr: &mut ChannelHandshakeConfig, mut val: bool) {
302         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.announced_channel = val;
303 }
304 /// When set, we commit to an upfront shutdown_pubkey at channel open. If our counterparty
305 /// supports it, they will then enforce the mutual-close output to us matches what we provided
306 /// at intialization, preventing us from closing to an alternate pubkey.
307 ///
308 /// This is set to true by default to provide a slight increase in security, though ultimately
309 /// any attacker who is able to take control of a channel can just as easily send the funds via
310 /// lightning payments, so we never require that our counterparties support this option.
311 ///
312 /// The upfront key committed is provided from [`SignerProvider::get_shutdown_scriptpubkey`].
313 ///
314 /// Default value: true.
315 ///
316 /// [`SignerProvider::get_shutdown_scriptpubkey`]: crate::sign::SignerProvider::get_shutdown_scriptpubkey
317 #[no_mangle]
318 pub extern "C" fn ChannelHandshakeConfig_get_commit_upfront_shutdown_pubkey(this_ptr: &ChannelHandshakeConfig) -> bool {
319         let mut inner_val = &mut this_ptr.get_native_mut_ref().commit_upfront_shutdown_pubkey;
320         *inner_val
321 }
322 /// When set, we commit to an upfront shutdown_pubkey at channel open. If our counterparty
323 /// supports it, they will then enforce the mutual-close output to us matches what we provided
324 /// at intialization, preventing us from closing to an alternate pubkey.
325 ///
326 /// This is set to true by default to provide a slight increase in security, though ultimately
327 /// any attacker who is able to take control of a channel can just as easily send the funds via
328 /// lightning payments, so we never require that our counterparties support this option.
329 ///
330 /// The upfront key committed is provided from [`SignerProvider::get_shutdown_scriptpubkey`].
331 ///
332 /// Default value: true.
333 ///
334 /// [`SignerProvider::get_shutdown_scriptpubkey`]: crate::sign::SignerProvider::get_shutdown_scriptpubkey
335 #[no_mangle]
336 pub extern "C" fn ChannelHandshakeConfig_set_commit_upfront_shutdown_pubkey(this_ptr: &mut ChannelHandshakeConfig, mut val: bool) {
337         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.commit_upfront_shutdown_pubkey = val;
338 }
339 /// The Proportion of the channel value to configure as counterparty's channel reserve,
340 /// i.e., `their_channel_reserve_satoshis` for both outbound and inbound channels.
341 ///
342 /// `their_channel_reserve_satoshis` is the minimum balance that the other node has to maintain
343 /// on their side, at all times.
344 /// This ensures that if our counterparty broadcasts a revoked state, we can punish them by
345 /// claiming at least this value on chain.
346 ///
347 /// Channel reserve values greater than 30% could be considered highly unreasonable, since that
348 /// amount can never be used for payments.
349 /// Also, if our selected channel reserve for counterparty and counterparty's selected
350 /// channel reserve for us sum up to equal or greater than channel value, channel negotiations
351 /// will fail.
352 ///
353 /// Note: Versions of LDK earlier than v0.0.104 will fail to read channels with any channel reserve
354 /// other than the default value.
355 ///
356 /// Default value: 1% of channel value, i.e., configured as 10,000 millionths.
357 /// Minimum value: If the calculated proportional value is less than 1000 sats, it will be treated
358 ///                as 1000 sats instead, which is a safe implementation-specific lower bound.
359 /// Maximum value: 1,000,000, any values larger than 1 Million will be treated as 1 Million (or 100%)
360 ///                instead, although channel negotiations will fail in that case.
361 #[no_mangle]
362 pub extern "C" fn ChannelHandshakeConfig_get_their_channel_reserve_proportional_millionths(this_ptr: &ChannelHandshakeConfig) -> u32 {
363         let mut inner_val = &mut this_ptr.get_native_mut_ref().their_channel_reserve_proportional_millionths;
364         *inner_val
365 }
366 /// The Proportion of the channel value to configure as counterparty's channel reserve,
367 /// i.e., `their_channel_reserve_satoshis` for both outbound and inbound channels.
368 ///
369 /// `their_channel_reserve_satoshis` is the minimum balance that the other node has to maintain
370 /// on their side, at all times.
371 /// This ensures that if our counterparty broadcasts a revoked state, we can punish them by
372 /// claiming at least this value on chain.
373 ///
374 /// Channel reserve values greater than 30% could be considered highly unreasonable, since that
375 /// amount can never be used for payments.
376 /// Also, if our selected channel reserve for counterparty and counterparty's selected
377 /// channel reserve for us sum up to equal or greater than channel value, channel negotiations
378 /// will fail.
379 ///
380 /// Note: Versions of LDK earlier than v0.0.104 will fail to read channels with any channel reserve
381 /// other than the default value.
382 ///
383 /// Default value: 1% of channel value, i.e., configured as 10,000 millionths.
384 /// Minimum value: If the calculated proportional value is less than 1000 sats, it will be treated
385 ///                as 1000 sats instead, which is a safe implementation-specific lower bound.
386 /// Maximum value: 1,000,000, any values larger than 1 Million will be treated as 1 Million (or 100%)
387 ///                instead, although channel negotiations will fail in that case.
388 #[no_mangle]
389 pub extern "C" fn ChannelHandshakeConfig_set_their_channel_reserve_proportional_millionths(this_ptr: &mut ChannelHandshakeConfig, mut val: u32) {
390         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.their_channel_reserve_proportional_millionths = val;
391 }
392 /// If set, we attempt to negotiate the `anchors_zero_fee_htlc_tx`option for all future
393 /// channels. This feature requires having a reserve of onchain funds readily available to bump
394 /// transactions in the event of a channel force close to avoid the possibility of losing funds.
395 ///
396 /// Note that if you wish accept inbound channels with anchor outputs, you must enable
397 /// [`UserConfig::manually_accept_inbound_channels`] and manually accept them with
398 /// [`ChannelManager::accept_inbound_channel`]. This is done to give you the chance to check
399 /// whether your reserve of onchain funds is enough to cover the fees for all existing and new
400 /// channels featuring anchor outputs in the event of a force close.
401 ///
402 /// If this option is set, channels may be created that will not be readable by LDK versions
403 /// prior to 0.0.116, causing [`ChannelManager`]'s read method to return a
404 /// [`DecodeError::InvalidValue`].
405 ///
406 /// Note that setting this to true does *not* prevent us from opening channels with
407 /// counterparties that do not support the `anchors_zero_fee_htlc_tx` option; we will simply
408 /// fall back to a `static_remote_key` channel.
409 ///
410 /// LDK will not support the legacy `option_anchors` commitment version due to a discovered
411 /// vulnerability after its deployment. For more context, see the [`SIGHASH_SINGLE + update_fee
412 /// Considered Harmful`] mailing list post.
413 ///
414 /// Default value: false. This value is likely to change to true in the future.
415 ///
416 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
417 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
418 /// [`DecodeError::InvalidValue`]: crate::ln::msgs::DecodeError::InvalidValue
419 /// [`SIGHASH_SINGLE + update_fee Considered Harmful`]: https://lists.linuxfoundation.org/pipermail/lightning-dev/2020-September/002796.html
420 #[no_mangle]
421 pub extern "C" fn ChannelHandshakeConfig_get_negotiate_anchors_zero_fee_htlc_tx(this_ptr: &ChannelHandshakeConfig) -> bool {
422         let mut inner_val = &mut this_ptr.get_native_mut_ref().negotiate_anchors_zero_fee_htlc_tx;
423         *inner_val
424 }
425 /// If set, we attempt to negotiate the `anchors_zero_fee_htlc_tx`option for all future
426 /// channels. This feature requires having a reserve of onchain funds readily available to bump
427 /// transactions in the event of a channel force close to avoid the possibility of losing funds.
428 ///
429 /// Note that if you wish accept inbound channels with anchor outputs, you must enable
430 /// [`UserConfig::manually_accept_inbound_channels`] and manually accept them with
431 /// [`ChannelManager::accept_inbound_channel`]. This is done to give you the chance to check
432 /// whether your reserve of onchain funds is enough to cover the fees for all existing and new
433 /// channels featuring anchor outputs in the event of a force close.
434 ///
435 /// If this option is set, channels may be created that will not be readable by LDK versions
436 /// prior to 0.0.116, causing [`ChannelManager`]'s read method to return a
437 /// [`DecodeError::InvalidValue`].
438 ///
439 /// Note that setting this to true does *not* prevent us from opening channels with
440 /// counterparties that do not support the `anchors_zero_fee_htlc_tx` option; we will simply
441 /// fall back to a `static_remote_key` channel.
442 ///
443 /// LDK will not support the legacy `option_anchors` commitment version due to a discovered
444 /// vulnerability after its deployment. For more context, see the [`SIGHASH_SINGLE + update_fee
445 /// Considered Harmful`] mailing list post.
446 ///
447 /// Default value: false. This value is likely to change to true in the future.
448 ///
449 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
450 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
451 /// [`DecodeError::InvalidValue`]: crate::ln::msgs::DecodeError::InvalidValue
452 /// [`SIGHASH_SINGLE + update_fee Considered Harmful`]: https://lists.linuxfoundation.org/pipermail/lightning-dev/2020-September/002796.html
453 #[no_mangle]
454 pub extern "C" fn ChannelHandshakeConfig_set_negotiate_anchors_zero_fee_htlc_tx(this_ptr: &mut ChannelHandshakeConfig, mut val: bool) {
455         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.negotiate_anchors_zero_fee_htlc_tx = val;
456 }
457 /// The maximum number of HTLCs in-flight from our counterparty towards us at the same time.
458 ///
459 /// Increasing the value can help improve liquidity and stability in
460 /// routing at the cost of higher long term disk / DB usage.
461 ///
462 /// Note: Versions of LDK earlier than v0.0.115 will fail to read channels with a configuration
463 /// other than the default value.
464 ///
465 /// Default value: 50
466 /// Maximum value: 483, any values larger will be treated as 483.
467 ///                     This is the BOLT #2 spec limit on `max_accepted_htlcs`.
468 #[no_mangle]
469 pub extern "C" fn ChannelHandshakeConfig_get_our_max_accepted_htlcs(this_ptr: &ChannelHandshakeConfig) -> u16 {
470         let mut inner_val = &mut this_ptr.get_native_mut_ref().our_max_accepted_htlcs;
471         *inner_val
472 }
473 /// The maximum number of HTLCs in-flight from our counterparty towards us at the same time.
474 ///
475 /// Increasing the value can help improve liquidity and stability in
476 /// routing at the cost of higher long term disk / DB usage.
477 ///
478 /// Note: Versions of LDK earlier than v0.0.115 will fail to read channels with a configuration
479 /// other than the default value.
480 ///
481 /// Default value: 50
482 /// Maximum value: 483, any values larger will be treated as 483.
483 ///                     This is the BOLT #2 spec limit on `max_accepted_htlcs`.
484 #[no_mangle]
485 pub extern "C" fn ChannelHandshakeConfig_set_our_max_accepted_htlcs(this_ptr: &mut ChannelHandshakeConfig, mut val: u16) {
486         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.our_max_accepted_htlcs = val;
487 }
488 /// Constructs a new ChannelHandshakeConfig given each field
489 #[must_use]
490 #[no_mangle]
491 pub extern "C" fn ChannelHandshakeConfig_new(mut minimum_depth_arg: u32, mut our_to_self_delay_arg: u16, mut our_htlc_minimum_msat_arg: u64, mut max_inbound_htlc_value_in_flight_percent_of_channel_arg: u8, mut negotiate_scid_privacy_arg: bool, mut announced_channel_arg: bool, mut commit_upfront_shutdown_pubkey_arg: bool, mut their_channel_reserve_proportional_millionths_arg: u32, mut negotiate_anchors_zero_fee_htlc_tx_arg: bool, mut our_max_accepted_htlcs_arg: u16) -> ChannelHandshakeConfig {
492         ChannelHandshakeConfig { inner: ObjOps::heap_alloc(nativeChannelHandshakeConfig {
493                 minimum_depth: minimum_depth_arg,
494                 our_to_self_delay: our_to_self_delay_arg,
495                 our_htlc_minimum_msat: our_htlc_minimum_msat_arg,
496                 max_inbound_htlc_value_in_flight_percent_of_channel: max_inbound_htlc_value_in_flight_percent_of_channel_arg,
497                 negotiate_scid_privacy: negotiate_scid_privacy_arg,
498                 announced_channel: announced_channel_arg,
499                 commit_upfront_shutdown_pubkey: commit_upfront_shutdown_pubkey_arg,
500                 their_channel_reserve_proportional_millionths: their_channel_reserve_proportional_millionths_arg,
501                 negotiate_anchors_zero_fee_htlc_tx: negotiate_anchors_zero_fee_htlc_tx_arg,
502                 our_max_accepted_htlcs: our_max_accepted_htlcs_arg,
503         }), is_owned: true }
504 }
505 impl Clone for ChannelHandshakeConfig {
506         fn clone(&self) -> Self {
507                 Self {
508                         inner: if <*mut nativeChannelHandshakeConfig>::is_null(self.inner) { core::ptr::null_mut() } else {
509                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
510                         is_owned: true,
511                 }
512         }
513 }
514 #[allow(unused)]
515 /// Used only if an object of this type is returned as a trait impl by a method
516 pub(crate) extern "C" fn ChannelHandshakeConfig_clone_void(this_ptr: *const c_void) -> *mut c_void {
517         Box::into_raw(Box::new(unsafe { (*(this_ptr as *const nativeChannelHandshakeConfig)).clone() })) as *mut c_void
518 }
519 #[no_mangle]
520 /// Creates a copy of the ChannelHandshakeConfig
521 pub extern "C" fn ChannelHandshakeConfig_clone(orig: &ChannelHandshakeConfig) -> ChannelHandshakeConfig {
522         orig.clone()
523 }
524 /// Get a string which allows debug introspection of a ChannelHandshakeConfig object
525 pub extern "C" fn ChannelHandshakeConfig_debug_str_void(o: *const c_void) -> Str {
526         alloc::format!("{:?}", unsafe { o as *const crate::lightning::util::config::ChannelHandshakeConfig }).into()}
527 /// Creates a "default" ChannelHandshakeConfig. See struct and individual field documentaiton for details on which values are used.
528 #[must_use]
529 #[no_mangle]
530 pub extern "C" fn ChannelHandshakeConfig_default() -> ChannelHandshakeConfig {
531         ChannelHandshakeConfig { inner: ObjOps::heap_alloc(Default::default()), is_owned: true }
532 }
533
534 use lightning::util::config::ChannelHandshakeLimits as nativeChannelHandshakeLimitsImport;
535 pub(crate) type nativeChannelHandshakeLimits = nativeChannelHandshakeLimitsImport;
536
537 /// Optional channel limits which are applied during channel creation.
538 ///
539 /// These limits are only applied to our counterparty's limits, not our own.
540 ///
541 /// Use 0/`<type>::max_value()` as appropriate to skip checking.
542 ///
543 /// Provides sane defaults for most configurations.
544 ///
545 /// Most additional limits are disabled except those with which specify a default in individual
546 /// field documentation. Note that this may result in barely-usable channels, but since they
547 /// are applied mostly only to incoming channels that's not much of a problem.
548 #[must_use]
549 #[repr(C)]
550 pub struct ChannelHandshakeLimits {
551         /// A pointer to the opaque Rust object.
552
553         /// Nearly everywhere, inner must be non-null, however in places where
554         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
555         pub inner: *mut nativeChannelHandshakeLimits,
556         /// Indicates that this is the only struct which contains the same pointer.
557
558         /// Rust functions which take ownership of an object provided via an argument require
559         /// this to be true and invalidate the object pointed to by inner.
560         pub is_owned: bool,
561 }
562
563 impl Drop for ChannelHandshakeLimits {
564         fn drop(&mut self) {
565                 if self.is_owned && !<*mut nativeChannelHandshakeLimits>::is_null(self.inner) {
566                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
567                 }
568         }
569 }
570 /// Frees any resources used by the ChannelHandshakeLimits, if is_owned is set and inner is non-NULL.
571 #[no_mangle]
572 pub extern "C" fn ChannelHandshakeLimits_free(this_obj: ChannelHandshakeLimits) { }
573 #[allow(unused)]
574 /// Used only if an object of this type is returned as a trait impl by a method
575 pub(crate) extern "C" fn ChannelHandshakeLimits_free_void(this_ptr: *mut c_void) {
576         let _ = unsafe { Box::from_raw(this_ptr as *mut nativeChannelHandshakeLimits) };
577 }
578 #[allow(unused)]
579 impl ChannelHandshakeLimits {
580         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelHandshakeLimits {
581                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
582         }
583         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelHandshakeLimits {
584                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
585         }
586         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
587         pub(crate) fn take_inner(mut self) -> *mut nativeChannelHandshakeLimits {
588                 assert!(self.is_owned);
589                 let ret = ObjOps::untweak_ptr(self.inner);
590                 self.inner = core::ptr::null_mut();
591                 ret
592         }
593 }
594 /// Minimum allowed satoshis when a channel is funded. This is supplied by the sender and so
595 /// only applies to inbound channels.
596 ///
597 /// Default value: 0.
598 #[no_mangle]
599 pub extern "C" fn ChannelHandshakeLimits_get_min_funding_satoshis(this_ptr: &ChannelHandshakeLimits) -> u64 {
600         let mut inner_val = &mut this_ptr.get_native_mut_ref().min_funding_satoshis;
601         *inner_val
602 }
603 /// Minimum allowed satoshis when a channel is funded. This is supplied by the sender and so
604 /// only applies to inbound channels.
605 ///
606 /// Default value: 0.
607 #[no_mangle]
608 pub extern "C" fn ChannelHandshakeLimits_set_min_funding_satoshis(this_ptr: &mut ChannelHandshakeLimits, mut val: u64) {
609         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.min_funding_satoshis = val;
610 }
611 /// Maximum allowed satoshis when a channel is funded. This is supplied by the sender and so
612 /// only applies to inbound channels.
613 ///
614 /// Default value: 2^24 - 1.
615 #[no_mangle]
616 pub extern "C" fn ChannelHandshakeLimits_get_max_funding_satoshis(this_ptr: &ChannelHandshakeLimits) -> u64 {
617         let mut inner_val = &mut this_ptr.get_native_mut_ref().max_funding_satoshis;
618         *inner_val
619 }
620 /// Maximum allowed satoshis when a channel is funded. This is supplied by the sender and so
621 /// only applies to inbound channels.
622 ///
623 /// Default value: 2^24 - 1.
624 #[no_mangle]
625 pub extern "C" fn ChannelHandshakeLimits_set_max_funding_satoshis(this_ptr: &mut ChannelHandshakeLimits, mut val: u64) {
626         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.max_funding_satoshis = val;
627 }
628 /// The remote node sets a limit on the minimum size of HTLCs we can send to them. This allows
629 /// you to limit the maximum minimum-size they can require.
630 ///
631 /// Default value: u64::max_value.
632 #[no_mangle]
633 pub extern "C" fn ChannelHandshakeLimits_get_max_htlc_minimum_msat(this_ptr: &ChannelHandshakeLimits) -> u64 {
634         let mut inner_val = &mut this_ptr.get_native_mut_ref().max_htlc_minimum_msat;
635         *inner_val
636 }
637 /// The remote node sets a limit on the minimum size of HTLCs we can send to them. This allows
638 /// you to limit the maximum minimum-size they can require.
639 ///
640 /// Default value: u64::max_value.
641 #[no_mangle]
642 pub extern "C" fn ChannelHandshakeLimits_set_max_htlc_minimum_msat(this_ptr: &mut ChannelHandshakeLimits, mut val: u64) {
643         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.max_htlc_minimum_msat = val;
644 }
645 /// The remote node sets a limit on the maximum value of pending HTLCs to them at any given
646 /// time to limit their funds exposure to HTLCs. This allows you to set a minimum such value.
647 ///
648 /// Default value: 0.
649 #[no_mangle]
650 pub extern "C" fn ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(this_ptr: &ChannelHandshakeLimits) -> u64 {
651         let mut inner_val = &mut this_ptr.get_native_mut_ref().min_max_htlc_value_in_flight_msat;
652         *inner_val
653 }
654 /// The remote node sets a limit on the maximum value of pending HTLCs to them at any given
655 /// time to limit their funds exposure to HTLCs. This allows you to set a minimum such value.
656 ///
657 /// Default value: 0.
658 #[no_mangle]
659 pub extern "C" fn ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(this_ptr: &mut ChannelHandshakeLimits, mut val: u64) {
660         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.min_max_htlc_value_in_flight_msat = val;
661 }
662 /// The remote node will require we keep a certain amount in direct payment to ourselves at all
663 /// time, ensuring that we are able to be punished if we broadcast an old state. This allows to
664 /// you limit the amount which we will have to keep to ourselves (and cannot use for HTLCs).
665 ///
666 /// Default value: u64::max_value.
667 #[no_mangle]
668 pub extern "C" fn ChannelHandshakeLimits_get_max_channel_reserve_satoshis(this_ptr: &ChannelHandshakeLimits) -> u64 {
669         let mut inner_val = &mut this_ptr.get_native_mut_ref().max_channel_reserve_satoshis;
670         *inner_val
671 }
672 /// The remote node will require we keep a certain amount in direct payment to ourselves at all
673 /// time, ensuring that we are able to be punished if we broadcast an old state. This allows to
674 /// you limit the amount which we will have to keep to ourselves (and cannot use for HTLCs).
675 ///
676 /// Default value: u64::max_value.
677 #[no_mangle]
678 pub extern "C" fn ChannelHandshakeLimits_set_max_channel_reserve_satoshis(this_ptr: &mut ChannelHandshakeLimits, mut val: u64) {
679         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.max_channel_reserve_satoshis = val;
680 }
681 /// The remote node sets a limit on the maximum number of pending HTLCs to them at any given
682 /// time. This allows you to set a minimum such value.
683 ///
684 /// Default value: 0.
685 #[no_mangle]
686 pub extern "C" fn ChannelHandshakeLimits_get_min_max_accepted_htlcs(this_ptr: &ChannelHandshakeLimits) -> u16 {
687         let mut inner_val = &mut this_ptr.get_native_mut_ref().min_max_accepted_htlcs;
688         *inner_val
689 }
690 /// The remote node sets a limit on the maximum number of pending HTLCs to them at any given
691 /// time. This allows you to set a minimum such value.
692 ///
693 /// Default value: 0.
694 #[no_mangle]
695 pub extern "C" fn ChannelHandshakeLimits_set_min_max_accepted_htlcs(this_ptr: &mut ChannelHandshakeLimits, mut val: u16) {
696         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.min_max_accepted_htlcs = val;
697 }
698 /// Before a channel is usable the funding transaction will need to be confirmed by at least a
699 /// certain number of blocks, specified by the node which is not the funder (as the funder can
700 /// assume they aren't going to double-spend themselves).
701 /// This config allows you to set a limit on the maximum amount of time to wait.
702 ///
703 /// Default value: 144, or roughly one day and only applies to outbound channels.
704 #[no_mangle]
705 pub extern "C" fn ChannelHandshakeLimits_get_max_minimum_depth(this_ptr: &ChannelHandshakeLimits) -> u32 {
706         let mut inner_val = &mut this_ptr.get_native_mut_ref().max_minimum_depth;
707         *inner_val
708 }
709 /// Before a channel is usable the funding transaction will need to be confirmed by at least a
710 /// certain number of blocks, specified by the node which is not the funder (as the funder can
711 /// assume they aren't going to double-spend themselves).
712 /// This config allows you to set a limit on the maximum amount of time to wait.
713 ///
714 /// Default value: 144, or roughly one day and only applies to outbound channels.
715 #[no_mangle]
716 pub extern "C" fn ChannelHandshakeLimits_set_max_minimum_depth(this_ptr: &mut ChannelHandshakeLimits, mut val: u32) {
717         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.max_minimum_depth = val;
718 }
719 /// Whether we implicitly trust funding transactions generated by us for our own outbound
720 /// channels to not be double-spent.
721 ///
722 /// If this is set, we assume that our own funding transactions are *never* double-spent, and
723 /// thus we can trust them without any confirmations. This is generally a reasonable
724 /// assumption, given we're the only ones who could ever double-spend it (assuming we have sole
725 /// control of the signing keys).
726 ///
727 /// You may wish to un-set this if you allow the user to (or do in an automated fashion)
728 /// double-spend the funding transaction to RBF with an alternative channel open.
729 ///
730 /// This only applies if our counterparty set their confirmations-required value to 0, and we
731 /// always trust our own funding transaction at 1 confirmation irrespective of this value.
732 /// Thus, this effectively acts as a `min_minimum_depth`, with the only possible values being
733 /// `true` (0) and `false` (1).
734 ///
735 /// Default value: true
736 #[no_mangle]
737 pub extern "C" fn ChannelHandshakeLimits_get_trust_own_funding_0conf(this_ptr: &ChannelHandshakeLimits) -> bool {
738         let mut inner_val = &mut this_ptr.get_native_mut_ref().trust_own_funding_0conf;
739         *inner_val
740 }
741 /// Whether we implicitly trust funding transactions generated by us for our own outbound
742 /// channels to not be double-spent.
743 ///
744 /// If this is set, we assume that our own funding transactions are *never* double-spent, and
745 /// thus we can trust them without any confirmations. This is generally a reasonable
746 /// assumption, given we're the only ones who could ever double-spend it (assuming we have sole
747 /// control of the signing keys).
748 ///
749 /// You may wish to un-set this if you allow the user to (or do in an automated fashion)
750 /// double-spend the funding transaction to RBF with an alternative channel open.
751 ///
752 /// This only applies if our counterparty set their confirmations-required value to 0, and we
753 /// always trust our own funding transaction at 1 confirmation irrespective of this value.
754 /// Thus, this effectively acts as a `min_minimum_depth`, with the only possible values being
755 /// `true` (0) and `false` (1).
756 ///
757 /// Default value: true
758 #[no_mangle]
759 pub extern "C" fn ChannelHandshakeLimits_set_trust_own_funding_0conf(this_ptr: &mut ChannelHandshakeLimits, mut val: bool) {
760         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.trust_own_funding_0conf = val;
761 }
762 /// Set to force an incoming channel to match our announced channel preference in
763 /// [`ChannelHandshakeConfig::announced_channel`].
764 ///
765 /// For a node which is not online reliably, this should be set to true and
766 /// [`ChannelHandshakeConfig::announced_channel`] set to false, ensuring that no announced (aka public)
767 /// channels will ever be opened.
768 ///
769 /// Default value: true.
770 #[no_mangle]
771 pub extern "C" fn ChannelHandshakeLimits_get_force_announced_channel_preference(this_ptr: &ChannelHandshakeLimits) -> bool {
772         let mut inner_val = &mut this_ptr.get_native_mut_ref().force_announced_channel_preference;
773         *inner_val
774 }
775 /// Set to force an incoming channel to match our announced channel preference in
776 /// [`ChannelHandshakeConfig::announced_channel`].
777 ///
778 /// For a node which is not online reliably, this should be set to true and
779 /// [`ChannelHandshakeConfig::announced_channel`] set to false, ensuring that no announced (aka public)
780 /// channels will ever be opened.
781 ///
782 /// Default value: true.
783 #[no_mangle]
784 pub extern "C" fn ChannelHandshakeLimits_set_force_announced_channel_preference(this_ptr: &mut ChannelHandshakeLimits, mut val: bool) {
785         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.force_announced_channel_preference = val;
786 }
787 /// Set to the amount of time we're willing to wait to claim money back to us.
788 ///
789 /// Not checking this value would be a security issue, as our peer would be able to set it to
790 /// max relative lock-time (a year) and we would \"lose\" money as it would be locked for a long time.
791 ///
792 /// Default value: 2016, which we also enforce as a maximum value so you can tweak config to
793 /// reduce the loss of having useless locked funds (if your peer accepts)
794 #[no_mangle]
795 pub extern "C" fn ChannelHandshakeLimits_get_their_to_self_delay(this_ptr: &ChannelHandshakeLimits) -> u16 {
796         let mut inner_val = &mut this_ptr.get_native_mut_ref().their_to_self_delay;
797         *inner_val
798 }
799 /// Set to the amount of time we're willing to wait to claim money back to us.
800 ///
801 /// Not checking this value would be a security issue, as our peer would be able to set it to
802 /// max relative lock-time (a year) and we would \"lose\" money as it would be locked for a long time.
803 ///
804 /// Default value: 2016, which we also enforce as a maximum value so you can tweak config to
805 /// reduce the loss of having useless locked funds (if your peer accepts)
806 #[no_mangle]
807 pub extern "C" fn ChannelHandshakeLimits_set_their_to_self_delay(this_ptr: &mut ChannelHandshakeLimits, mut val: u16) {
808         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.their_to_self_delay = val;
809 }
810 /// Constructs a new ChannelHandshakeLimits given each field
811 #[must_use]
812 #[no_mangle]
813 pub extern "C" fn ChannelHandshakeLimits_new(mut min_funding_satoshis_arg: u64, mut max_funding_satoshis_arg: u64, mut max_htlc_minimum_msat_arg: u64, mut min_max_htlc_value_in_flight_msat_arg: u64, mut max_channel_reserve_satoshis_arg: u64, mut min_max_accepted_htlcs_arg: u16, mut max_minimum_depth_arg: u32, mut trust_own_funding_0conf_arg: bool, mut force_announced_channel_preference_arg: bool, mut their_to_self_delay_arg: u16) -> ChannelHandshakeLimits {
814         ChannelHandshakeLimits { inner: ObjOps::heap_alloc(nativeChannelHandshakeLimits {
815                 min_funding_satoshis: min_funding_satoshis_arg,
816                 max_funding_satoshis: max_funding_satoshis_arg,
817                 max_htlc_minimum_msat: max_htlc_minimum_msat_arg,
818                 min_max_htlc_value_in_flight_msat: min_max_htlc_value_in_flight_msat_arg,
819                 max_channel_reserve_satoshis: max_channel_reserve_satoshis_arg,
820                 min_max_accepted_htlcs: min_max_accepted_htlcs_arg,
821                 max_minimum_depth: max_minimum_depth_arg,
822                 trust_own_funding_0conf: trust_own_funding_0conf_arg,
823                 force_announced_channel_preference: force_announced_channel_preference_arg,
824                 their_to_self_delay: their_to_self_delay_arg,
825         }), is_owned: true }
826 }
827 impl Clone for ChannelHandshakeLimits {
828         fn clone(&self) -> Self {
829                 Self {
830                         inner: if <*mut nativeChannelHandshakeLimits>::is_null(self.inner) { core::ptr::null_mut() } else {
831                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
832                         is_owned: true,
833                 }
834         }
835 }
836 #[allow(unused)]
837 /// Used only if an object of this type is returned as a trait impl by a method
838 pub(crate) extern "C" fn ChannelHandshakeLimits_clone_void(this_ptr: *const c_void) -> *mut c_void {
839         Box::into_raw(Box::new(unsafe { (*(this_ptr as *const nativeChannelHandshakeLimits)).clone() })) as *mut c_void
840 }
841 #[no_mangle]
842 /// Creates a copy of the ChannelHandshakeLimits
843 pub extern "C" fn ChannelHandshakeLimits_clone(orig: &ChannelHandshakeLimits) -> ChannelHandshakeLimits {
844         orig.clone()
845 }
846 /// Get a string which allows debug introspection of a ChannelHandshakeLimits object
847 pub extern "C" fn ChannelHandshakeLimits_debug_str_void(o: *const c_void) -> Str {
848         alloc::format!("{:?}", unsafe { o as *const crate::lightning::util::config::ChannelHandshakeLimits }).into()}
849 /// Creates a "default" ChannelHandshakeLimits. See struct and individual field documentaiton for details on which values are used.
850 #[must_use]
851 #[no_mangle]
852 pub extern "C" fn ChannelHandshakeLimits_default() -> ChannelHandshakeLimits {
853         ChannelHandshakeLimits { inner: ObjOps::heap_alloc(Default::default()), is_owned: true }
854 }
855 /// Options for how to set the max dust HTLC exposure allowed on a channel. See
856 /// [`ChannelConfig::max_dust_htlc_exposure`] for details.
857 #[derive(Clone)]
858 #[must_use]
859 #[repr(C)]
860 pub enum MaxDustHTLCExposure {
861         /// This sets a fixed limit on the total dust exposure in millisatoshis. Setting this too low
862         /// may prevent the sending or receipt of low-value HTLCs on high-traffic nodes, however this
863         /// limit is very important to prevent stealing of large amounts of dust HTLCs by miners
864         /// through [fee griefing
865         /// attacks](https://lists.linuxfoundation.org/pipermail/lightning-dev/2020-May/002714.html).
866         ///
867         /// Note that if the feerate increases significantly, without a manual increase
868         /// to this maximum the channel may be unable to send/receive HTLCs between the maximum dust
869         /// exposure and the new minimum value for HTLCs to be economically viable to claim.
870         FixedLimitMsat(
871                 u64),
872         /// This sets a multiplier on the estimated high priority feerate (sats/KW, as obtained from
873         /// [`FeeEstimator`]) to determine the maximum allowed dust exposure. If this variant is used
874         /// then the maximum dust exposure in millisatoshis is calculated as:
875         /// `high_priority_feerate_per_kw * value`. For example, with our default value
876         /// `FeeRateMultiplier(5000)`:
877         ///
878         /// - For the minimum fee rate of 1 sat/vByte (250 sat/KW, although the minimum
879         /// defaults to 253 sats/KW for rounding, see [`FeeEstimator`]), the max dust exposure would
880         /// be 253 * 5000 = 1,265,000 msats.
881         /// - For a fee rate of 30 sat/vByte (7500 sat/KW), the max dust exposure would be
882         /// 7500 * 5000 = 37,500,000 msats.
883         ///
884         /// This allows the maximum dust exposure to automatically scale with fee rate changes.
885         ///
886         /// Note, if you're using a third-party fee estimator, this may leave you more exposed to a
887         /// fee griefing attack, where your fee estimator may purposely overestimate the fee rate,
888         /// causing you to accept more dust HTLCs than you would otherwise.
889         ///
890         /// This variant is primarily meant to serve pre-anchor channels, as HTLC fees being included
891         /// on HTLC outputs means your channel may be subject to more dust exposure in the event of
892         /// increases in fee rate.
893         ///
894         /// # Backwards Compatibility
895         /// This variant only became available in LDK 0.0.116, so if you downgrade to a prior version
896         /// by default this will be set to a [`Self::FixedLimitMsat`] of 5,000,000 msat.
897         ///
898         /// [`FeeEstimator`]: crate::chain::chaininterface::FeeEstimator
899         FeeRateMultiplier(
900                 u64),
901 }
902 use lightning::util::config::MaxDustHTLCExposure as MaxDustHTLCExposureImport;
903 pub(crate) type nativeMaxDustHTLCExposure = MaxDustHTLCExposureImport;
904
905 impl MaxDustHTLCExposure {
906         #[allow(unused)]
907         pub(crate) fn to_native(&self) -> nativeMaxDustHTLCExposure {
908                 match self {
909                         MaxDustHTLCExposure::FixedLimitMsat (ref a, ) => {
910                                 let mut a_nonref = Clone::clone(a);
911                                 nativeMaxDustHTLCExposure::FixedLimitMsat (
912                                         a_nonref,
913                                 )
914                         },
915                         MaxDustHTLCExposure::FeeRateMultiplier (ref a, ) => {
916                                 let mut a_nonref = Clone::clone(a);
917                                 nativeMaxDustHTLCExposure::FeeRateMultiplier (
918                                         a_nonref,
919                                 )
920                         },
921                 }
922         }
923         #[allow(unused)]
924         pub(crate) fn into_native(self) -> nativeMaxDustHTLCExposure {
925                 match self {
926                         MaxDustHTLCExposure::FixedLimitMsat (mut a, ) => {
927                                 nativeMaxDustHTLCExposure::FixedLimitMsat (
928                                         a,
929                                 )
930                         },
931                         MaxDustHTLCExposure::FeeRateMultiplier (mut a, ) => {
932                                 nativeMaxDustHTLCExposure::FeeRateMultiplier (
933                                         a,
934                                 )
935                         },
936                 }
937         }
938         #[allow(unused)]
939         pub(crate) fn from_native(native: &MaxDustHTLCExposureImport) -> Self {
940                 let native = unsafe { &*(native as *const _ as *const c_void as *const nativeMaxDustHTLCExposure) };
941                 match native {
942                         nativeMaxDustHTLCExposure::FixedLimitMsat (ref a, ) => {
943                                 let mut a_nonref = Clone::clone(a);
944                                 MaxDustHTLCExposure::FixedLimitMsat (
945                                         a_nonref,
946                                 )
947                         },
948                         nativeMaxDustHTLCExposure::FeeRateMultiplier (ref a, ) => {
949                                 let mut a_nonref = Clone::clone(a);
950                                 MaxDustHTLCExposure::FeeRateMultiplier (
951                                         a_nonref,
952                                 )
953                         },
954                 }
955         }
956         #[allow(unused)]
957         pub(crate) fn native_into(native: nativeMaxDustHTLCExposure) -> Self {
958                 match native {
959                         nativeMaxDustHTLCExposure::FixedLimitMsat (mut a, ) => {
960                                 MaxDustHTLCExposure::FixedLimitMsat (
961                                         a,
962                                 )
963                         },
964                         nativeMaxDustHTLCExposure::FeeRateMultiplier (mut a, ) => {
965                                 MaxDustHTLCExposure::FeeRateMultiplier (
966                                         a,
967                                 )
968                         },
969                 }
970         }
971 }
972 /// Frees any resources used by the MaxDustHTLCExposure
973 #[no_mangle]
974 pub extern "C" fn MaxDustHTLCExposure_free(this_ptr: MaxDustHTLCExposure) { }
975 /// Creates a copy of the MaxDustHTLCExposure
976 #[no_mangle]
977 pub extern "C" fn MaxDustHTLCExposure_clone(orig: &MaxDustHTLCExposure) -> MaxDustHTLCExposure {
978         orig.clone()
979 }
980 #[allow(unused)]
981 /// Used only if an object of this type is returned as a trait impl by a method
982 pub(crate) extern "C" fn MaxDustHTLCExposure_clone_void(this_ptr: *const c_void) -> *mut c_void {
983         Box::into_raw(Box::new(unsafe { (*(this_ptr as *const MaxDustHTLCExposure)).clone() })) as *mut c_void
984 }
985 #[allow(unused)]
986 /// Used only if an object of this type is returned as a trait impl by a method
987 pub(crate) extern "C" fn MaxDustHTLCExposure_free_void(this_ptr: *mut c_void) {
988         let _ = unsafe { Box::from_raw(this_ptr as *mut MaxDustHTLCExposure) };
989 }
990 #[no_mangle]
991 /// Utility method to constructs a new FixedLimitMsat-variant MaxDustHTLCExposure
992 pub extern "C" fn MaxDustHTLCExposure_fixed_limit_msat(a: u64) -> MaxDustHTLCExposure {
993         MaxDustHTLCExposure::FixedLimitMsat(a, )
994 }
995 #[no_mangle]
996 /// Utility method to constructs a new FeeRateMultiplier-variant MaxDustHTLCExposure
997 pub extern "C" fn MaxDustHTLCExposure_fee_rate_multiplier(a: u64) -> MaxDustHTLCExposure {
998         MaxDustHTLCExposure::FeeRateMultiplier(a, )
999 }
1000 /// Get a string which allows debug introspection of a MaxDustHTLCExposure object
1001 pub extern "C" fn MaxDustHTLCExposure_debug_str_void(o: *const c_void) -> Str {
1002         alloc::format!("{:?}", unsafe { o as *const crate::lightning::util::config::MaxDustHTLCExposure }).into()}
1003 /// Checks if two MaxDustHTLCExposures contain equal inner contents.
1004 /// This ignores pointers and is_owned flags and looks at the values in fields.
1005 #[no_mangle]
1006 pub extern "C" fn MaxDustHTLCExposure_eq(a: &MaxDustHTLCExposure, b: &MaxDustHTLCExposure) -> bool {
1007         if &a.to_native() == &b.to_native() { true } else { false }
1008 }
1009 #[no_mangle]
1010 /// Serialize the MaxDustHTLCExposure object into a byte array which can be read by MaxDustHTLCExposure_read
1011 pub extern "C" fn MaxDustHTLCExposure_write(obj: &crate::lightning::util::config::MaxDustHTLCExposure) -> crate::c_types::derived::CVec_u8Z {
1012         crate::c_types::serialize_obj(&unsafe { &*obj }.to_native())
1013 }
1014 #[allow(unused)]
1015 pub(crate) extern "C" fn MaxDustHTLCExposure_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1016         MaxDustHTLCExposure_write(unsafe { &*(obj as *const MaxDustHTLCExposure) })
1017 }
1018 #[no_mangle]
1019 /// Read a MaxDustHTLCExposure from a byte array, created by MaxDustHTLCExposure_write
1020 pub extern "C" fn MaxDustHTLCExposure_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_MaxDustHTLCExposureDecodeErrorZ {
1021         let res: Result<lightning::util::config::MaxDustHTLCExposure, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
1022         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::util::config::MaxDustHTLCExposure::native_into(o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError::native_into(e) }).into() };
1023         local_res
1024 }
1025
1026 use lightning::util::config::ChannelConfig as nativeChannelConfigImport;
1027 pub(crate) type nativeChannelConfig = nativeChannelConfigImport;
1028
1029 /// Options which apply on a per-channel basis and may change at runtime or based on negotiation
1030 /// with our counterparty.
1031 #[must_use]
1032 #[repr(C)]
1033 pub struct ChannelConfig {
1034         /// A pointer to the opaque Rust object.
1035
1036         /// Nearly everywhere, inner must be non-null, however in places where
1037         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1038         pub inner: *mut nativeChannelConfig,
1039         /// Indicates that this is the only struct which contains the same pointer.
1040
1041         /// Rust functions which take ownership of an object provided via an argument require
1042         /// this to be true and invalidate the object pointed to by inner.
1043         pub is_owned: bool,
1044 }
1045
1046 impl Drop for ChannelConfig {
1047         fn drop(&mut self) {
1048                 if self.is_owned && !<*mut nativeChannelConfig>::is_null(self.inner) {
1049                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1050                 }
1051         }
1052 }
1053 /// Frees any resources used by the ChannelConfig, if is_owned is set and inner is non-NULL.
1054 #[no_mangle]
1055 pub extern "C" fn ChannelConfig_free(this_obj: ChannelConfig) { }
1056 #[allow(unused)]
1057 /// Used only if an object of this type is returned as a trait impl by a method
1058 pub(crate) extern "C" fn ChannelConfig_free_void(this_ptr: *mut c_void) {
1059         let _ = unsafe { Box::from_raw(this_ptr as *mut nativeChannelConfig) };
1060 }
1061 #[allow(unused)]
1062 impl ChannelConfig {
1063         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelConfig {
1064                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1065         }
1066         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelConfig {
1067                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1068         }
1069         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1070         pub(crate) fn take_inner(mut self) -> *mut nativeChannelConfig {
1071                 assert!(self.is_owned);
1072                 let ret = ObjOps::untweak_ptr(self.inner);
1073                 self.inner = core::ptr::null_mut();
1074                 ret
1075         }
1076 }
1077 /// Amount (in millionths of a satoshi) charged per satoshi for payments forwarded outbound
1078 /// over the channel.
1079 /// This may be allowed to change at runtime in a later update, however doing so must result in
1080 /// update messages sent to notify all nodes of our updated relay fee.
1081 ///
1082 /// Default value: 0.
1083 #[no_mangle]
1084 pub extern "C" fn ChannelConfig_get_forwarding_fee_proportional_millionths(this_ptr: &ChannelConfig) -> u32 {
1085         let mut inner_val = &mut this_ptr.get_native_mut_ref().forwarding_fee_proportional_millionths;
1086         *inner_val
1087 }
1088 /// Amount (in millionths of a satoshi) charged per satoshi for payments forwarded outbound
1089 /// over the channel.
1090 /// This may be allowed to change at runtime in a later update, however doing so must result in
1091 /// update messages sent to notify all nodes of our updated relay fee.
1092 ///
1093 /// Default value: 0.
1094 #[no_mangle]
1095 pub extern "C" fn ChannelConfig_set_forwarding_fee_proportional_millionths(this_ptr: &mut ChannelConfig, mut val: u32) {
1096         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.forwarding_fee_proportional_millionths = val;
1097 }
1098 /// Amount (in milli-satoshi) charged for payments forwarded outbound over the channel, in
1099 /// excess of [`forwarding_fee_proportional_millionths`].
1100 /// This may be allowed to change at runtime in a later update, however doing so must result in
1101 /// update messages sent to notify all nodes of our updated relay fee.
1102 ///
1103 /// The default value of a single satoshi roughly matches the market rate on many routing nodes
1104 /// as of July 2021. Adjusting it upwards or downwards may change whether nodes route through
1105 /// this node.
1106 ///
1107 /// Default value: 1000.
1108 ///
1109 /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
1110 #[no_mangle]
1111 pub extern "C" fn ChannelConfig_get_forwarding_fee_base_msat(this_ptr: &ChannelConfig) -> u32 {
1112         let mut inner_val = &mut this_ptr.get_native_mut_ref().forwarding_fee_base_msat;
1113         *inner_val
1114 }
1115 /// Amount (in milli-satoshi) charged for payments forwarded outbound over the channel, in
1116 /// excess of [`forwarding_fee_proportional_millionths`].
1117 /// This may be allowed to change at runtime in a later update, however doing so must result in
1118 /// update messages sent to notify all nodes of our updated relay fee.
1119 ///
1120 /// The default value of a single satoshi roughly matches the market rate on many routing nodes
1121 /// as of July 2021. Adjusting it upwards or downwards may change whether nodes route through
1122 /// this node.
1123 ///
1124 /// Default value: 1000.
1125 ///
1126 /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
1127 #[no_mangle]
1128 pub extern "C" fn ChannelConfig_set_forwarding_fee_base_msat(this_ptr: &mut ChannelConfig, mut val: u32) {
1129         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.forwarding_fee_base_msat = val;
1130 }
1131 /// The difference in the CLTV value between incoming HTLCs and an outbound HTLC forwarded over
1132 /// the channel this config applies to.
1133 ///
1134 /// This is analogous to [`ChannelHandshakeConfig::our_to_self_delay`] but applies to in-flight
1135 /// HTLC balance when a channel appears on-chain whereas
1136 /// [`ChannelHandshakeConfig::our_to_self_delay`] applies to the remaining
1137 /// (non-HTLC-encumbered) balance.
1138 ///
1139 /// Thus, for HTLC-encumbered balances to be enforced on-chain when a channel is force-closed,
1140 /// we (or one of our watchtowers) MUST be online to check for broadcast of the current
1141 /// commitment transaction at least once per this many blocks (minus some margin to allow us
1142 /// enough time to broadcast and confirm a transaction, possibly with time in between to RBF
1143 /// the spending transaction).
1144 ///
1145 /// Default value: 72 (12 hours at an average of 6 blocks/hour).
1146 /// Minimum value: [`MIN_CLTV_EXPIRY_DELTA`], any values less than this will be treated as
1147 ///                [`MIN_CLTV_EXPIRY_DELTA`] instead.
1148 ///
1149 /// [`MIN_CLTV_EXPIRY_DELTA`]: crate::ln::channelmanager::MIN_CLTV_EXPIRY_DELTA
1150 #[no_mangle]
1151 pub extern "C" fn ChannelConfig_get_cltv_expiry_delta(this_ptr: &ChannelConfig) -> u16 {
1152         let mut inner_val = &mut this_ptr.get_native_mut_ref().cltv_expiry_delta;
1153         *inner_val
1154 }
1155 /// The difference in the CLTV value between incoming HTLCs and an outbound HTLC forwarded over
1156 /// the channel this config applies to.
1157 ///
1158 /// This is analogous to [`ChannelHandshakeConfig::our_to_self_delay`] but applies to in-flight
1159 /// HTLC balance when a channel appears on-chain whereas
1160 /// [`ChannelHandshakeConfig::our_to_self_delay`] applies to the remaining
1161 /// (non-HTLC-encumbered) balance.
1162 ///
1163 /// Thus, for HTLC-encumbered balances to be enforced on-chain when a channel is force-closed,
1164 /// we (or one of our watchtowers) MUST be online to check for broadcast of the current
1165 /// commitment transaction at least once per this many blocks (minus some margin to allow us
1166 /// enough time to broadcast and confirm a transaction, possibly with time in between to RBF
1167 /// the spending transaction).
1168 ///
1169 /// Default value: 72 (12 hours at an average of 6 blocks/hour).
1170 /// Minimum value: [`MIN_CLTV_EXPIRY_DELTA`], any values less than this will be treated as
1171 ///                [`MIN_CLTV_EXPIRY_DELTA`] instead.
1172 ///
1173 /// [`MIN_CLTV_EXPIRY_DELTA`]: crate::ln::channelmanager::MIN_CLTV_EXPIRY_DELTA
1174 #[no_mangle]
1175 pub extern "C" fn ChannelConfig_set_cltv_expiry_delta(this_ptr: &mut ChannelConfig, mut val: u16) {
1176         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.cltv_expiry_delta = val;
1177 }
1178 /// Limit our total exposure to in-flight HTLCs which are burned to fees as they are too
1179 /// small to claim on-chain.
1180 ///
1181 /// When an HTLC present in one of our channels is below a \"dust\" threshold, the HTLC will
1182 /// not be claimable on-chain, instead being turned into additional miner fees if either
1183 /// party force-closes the channel. Because the threshold is per-HTLC, our total exposure
1184 /// to such payments may be sustantial if there are many dust HTLCs present when the
1185 /// channel is force-closed.
1186 ///
1187 /// The dust threshold for each HTLC is based on the `dust_limit_satoshis` for each party in a
1188 /// channel negotiated throughout the channel open process, along with the fees required to have
1189 /// a broadcastable HTLC spending transaction. When a channel supports anchor outputs
1190 /// (specifically the zero fee HTLC transaction variant), this threshold no longer takes into
1191 /// account the HTLC transaction fee as it is zero. Because of this, you may want to set this
1192 /// value to a fixed limit for channels using anchor outputs, while the fee rate multiplier
1193 /// variant is primarily intended for use with pre-anchor channels.
1194 ///
1195 /// The selected limit is applied for sent, forwarded, and received HTLCs and limits the total
1196 /// exposure across all three types per-channel.
1197 ///
1198 /// Default value: [`MaxDustHTLCExposure::FeeRateMultiplier`] with a multiplier of 5000.
1199 #[no_mangle]
1200 pub extern "C" fn ChannelConfig_get_max_dust_htlc_exposure(this_ptr: &ChannelConfig) -> crate::lightning::util::config::MaxDustHTLCExposure {
1201         let mut inner_val = &mut this_ptr.get_native_mut_ref().max_dust_htlc_exposure;
1202         crate::lightning::util::config::MaxDustHTLCExposure::from_native(inner_val)
1203 }
1204 /// Limit our total exposure to in-flight HTLCs which are burned to fees as they are too
1205 /// small to claim on-chain.
1206 ///
1207 /// When an HTLC present in one of our channels is below a \"dust\" threshold, the HTLC will
1208 /// not be claimable on-chain, instead being turned into additional miner fees if either
1209 /// party force-closes the channel. Because the threshold is per-HTLC, our total exposure
1210 /// to such payments may be sustantial if there are many dust HTLCs present when the
1211 /// channel is force-closed.
1212 ///
1213 /// The dust threshold for each HTLC is based on the `dust_limit_satoshis` for each party in a
1214 /// channel negotiated throughout the channel open process, along with the fees required to have
1215 /// a broadcastable HTLC spending transaction. When a channel supports anchor outputs
1216 /// (specifically the zero fee HTLC transaction variant), this threshold no longer takes into
1217 /// account the HTLC transaction fee as it is zero. Because of this, you may want to set this
1218 /// value to a fixed limit for channels using anchor outputs, while the fee rate multiplier
1219 /// variant is primarily intended for use with pre-anchor channels.
1220 ///
1221 /// The selected limit is applied for sent, forwarded, and received HTLCs and limits the total
1222 /// exposure across all three types per-channel.
1223 ///
1224 /// Default value: [`MaxDustHTLCExposure::FeeRateMultiplier`] with a multiplier of 5000.
1225 #[no_mangle]
1226 pub extern "C" fn ChannelConfig_set_max_dust_htlc_exposure(this_ptr: &mut ChannelConfig, mut val: crate::lightning::util::config::MaxDustHTLCExposure) {
1227         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.max_dust_htlc_exposure = val.into_native();
1228 }
1229 /// The additional fee we're willing to pay to avoid waiting for the counterparty's
1230 /// `to_self_delay` to reclaim funds.
1231 ///
1232 /// When we close a channel cooperatively with our counterparty, we negotiate a fee for the
1233 /// closing transaction which both sides find acceptable, ultimately paid by the channel
1234 /// funder/initiator.
1235 ///
1236 /// When we are the funder, because we have to pay the channel closing fee, we bound the
1237 /// acceptable fee by our [`ChannelCloseMinimum`] and [`NonAnchorChannelFee`] fees, with the upper bound increased by
1238 /// this value. Because the on-chain fee we'd pay to force-close the channel is kept near our
1239 /// [`NonAnchorChannelFee`] feerate during normal operation, this value represents the additional fee we're
1240 /// willing to pay in order to avoid waiting for our counterparty's to_self_delay to reclaim our
1241 /// funds.
1242 ///
1243 /// When we are not the funder, we require the closing transaction fee pay at least our
1244 /// [`ChannelCloseMinimum`] fee estimate, but allow our counterparty to pay as much fee as they like.
1245 /// Thus, this value is ignored when we are not the funder.
1246 ///
1247 /// Default value: 1000 satoshis.
1248 ///
1249 /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
1250 /// [`ChannelCloseMinimum`]: crate::chain::chaininterface::ConfirmationTarget::ChannelCloseMinimum
1251 #[no_mangle]
1252 pub extern "C" fn ChannelConfig_get_force_close_avoidance_max_fee_satoshis(this_ptr: &ChannelConfig) -> u64 {
1253         let mut inner_val = &mut this_ptr.get_native_mut_ref().force_close_avoidance_max_fee_satoshis;
1254         *inner_val
1255 }
1256 /// The additional fee we're willing to pay to avoid waiting for the counterparty's
1257 /// `to_self_delay` to reclaim funds.
1258 ///
1259 /// When we close a channel cooperatively with our counterparty, we negotiate a fee for the
1260 /// closing transaction which both sides find acceptable, ultimately paid by the channel
1261 /// funder/initiator.
1262 ///
1263 /// When we are the funder, because we have to pay the channel closing fee, we bound the
1264 /// acceptable fee by our [`ChannelCloseMinimum`] and [`NonAnchorChannelFee`] fees, with the upper bound increased by
1265 /// this value. Because the on-chain fee we'd pay to force-close the channel is kept near our
1266 /// [`NonAnchorChannelFee`] feerate during normal operation, this value represents the additional fee we're
1267 /// willing to pay in order to avoid waiting for our counterparty's to_self_delay to reclaim our
1268 /// funds.
1269 ///
1270 /// When we are not the funder, we require the closing transaction fee pay at least our
1271 /// [`ChannelCloseMinimum`] fee estimate, but allow our counterparty to pay as much fee as they like.
1272 /// Thus, this value is ignored when we are not the funder.
1273 ///
1274 /// Default value: 1000 satoshis.
1275 ///
1276 /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
1277 /// [`ChannelCloseMinimum`]: crate::chain::chaininterface::ConfirmationTarget::ChannelCloseMinimum
1278 #[no_mangle]
1279 pub extern "C" fn ChannelConfig_set_force_close_avoidance_max_fee_satoshis(this_ptr: &mut ChannelConfig, mut val: u64) {
1280         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.force_close_avoidance_max_fee_satoshis = val;
1281 }
1282 /// If set, allows this channel's counterparty to skim an additional fee off this node's inbound
1283 /// HTLCs. Useful for liquidity providers to offload on-chain channel costs to end users.
1284 ///
1285 /// Usage:
1286 /// - The payee will set this option and set its invoice route hints to use [intercept scids]
1287 ///   generated by this channel's counterparty.
1288 /// - The counterparty will get an [`HTLCIntercepted`] event upon payment forward, and call
1289 ///   [`forward_intercepted_htlc`] with less than the amount provided in
1290 ///   [`HTLCIntercepted::expected_outbound_amount_msat`]. The difference between the expected and
1291 ///   actual forward amounts is their fee. See
1292 ///   <https://github.com/BitcoinAndLightningLayerSpecs/lsp/tree/main/LSPS2#flow-lsp-trusts-client-model>
1293 ///   for how this feature may be used in the LSP use case.
1294 ///
1295 /// # Note
1296 /// It's important for payee wallet software to verify that [`PaymentClaimable::amount_msat`] is
1297 /// as-expected if this feature is activated, otherwise they may lose money!
1298 /// [`PaymentClaimable::counterparty_skimmed_fee_msat`] provides the fee taken by the
1299 /// counterparty.
1300 ///
1301 /// # Note
1302 /// Switching this config flag on may break compatibility with versions of LDK prior to 0.0.116.
1303 /// Unsetting this flag between restarts may lead to payment receive failures.
1304 ///
1305 /// Default value: false.
1306 ///
1307 /// [intercept scids]: crate::ln::channelmanager::ChannelManager::get_intercept_scid
1308 /// [`forward_intercepted_htlc`]: crate::ln::channelmanager::ChannelManager::forward_intercepted_htlc
1309 /// [`HTLCIntercepted`]: crate::events::Event::HTLCIntercepted
1310 /// [`HTLCIntercepted::expected_outbound_amount_msat`]: crate::events::Event::HTLCIntercepted::expected_outbound_amount_msat
1311 /// [`PaymentClaimable::amount_msat`]: crate::events::Event::PaymentClaimable::amount_msat
1312 /// [`PaymentClaimable::counterparty_skimmed_fee_msat`]: crate::events::Event::PaymentClaimable::counterparty_skimmed_fee_msat
1313 #[no_mangle]
1314 pub extern "C" fn ChannelConfig_get_accept_underpaying_htlcs(this_ptr: &ChannelConfig) -> bool {
1315         let mut inner_val = &mut this_ptr.get_native_mut_ref().accept_underpaying_htlcs;
1316         *inner_val
1317 }
1318 /// If set, allows this channel's counterparty to skim an additional fee off this node's inbound
1319 /// HTLCs. Useful for liquidity providers to offload on-chain channel costs to end users.
1320 ///
1321 /// Usage:
1322 /// - The payee will set this option and set its invoice route hints to use [intercept scids]
1323 ///   generated by this channel's counterparty.
1324 /// - The counterparty will get an [`HTLCIntercepted`] event upon payment forward, and call
1325 ///   [`forward_intercepted_htlc`] with less than the amount provided in
1326 ///   [`HTLCIntercepted::expected_outbound_amount_msat`]. The difference between the expected and
1327 ///   actual forward amounts is their fee. See
1328 ///   <https://github.com/BitcoinAndLightningLayerSpecs/lsp/tree/main/LSPS2#flow-lsp-trusts-client-model>
1329 ///   for how this feature may be used in the LSP use case.
1330 ///
1331 /// # Note
1332 /// It's important for payee wallet software to verify that [`PaymentClaimable::amount_msat`] is
1333 /// as-expected if this feature is activated, otherwise they may lose money!
1334 /// [`PaymentClaimable::counterparty_skimmed_fee_msat`] provides the fee taken by the
1335 /// counterparty.
1336 ///
1337 /// # Note
1338 /// Switching this config flag on may break compatibility with versions of LDK prior to 0.0.116.
1339 /// Unsetting this flag between restarts may lead to payment receive failures.
1340 ///
1341 /// Default value: false.
1342 ///
1343 /// [intercept scids]: crate::ln::channelmanager::ChannelManager::get_intercept_scid
1344 /// [`forward_intercepted_htlc`]: crate::ln::channelmanager::ChannelManager::forward_intercepted_htlc
1345 /// [`HTLCIntercepted`]: crate::events::Event::HTLCIntercepted
1346 /// [`HTLCIntercepted::expected_outbound_amount_msat`]: crate::events::Event::HTLCIntercepted::expected_outbound_amount_msat
1347 /// [`PaymentClaimable::amount_msat`]: crate::events::Event::PaymentClaimable::amount_msat
1348 /// [`PaymentClaimable::counterparty_skimmed_fee_msat`]: crate::events::Event::PaymentClaimable::counterparty_skimmed_fee_msat
1349 #[no_mangle]
1350 pub extern "C" fn ChannelConfig_set_accept_underpaying_htlcs(this_ptr: &mut ChannelConfig, mut val: bool) {
1351         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.accept_underpaying_htlcs = val;
1352 }
1353 /// Constructs a new ChannelConfig given each field
1354 #[must_use]
1355 #[no_mangle]
1356 pub extern "C" fn ChannelConfig_new(mut forwarding_fee_proportional_millionths_arg: u32, mut forwarding_fee_base_msat_arg: u32, mut cltv_expiry_delta_arg: u16, mut max_dust_htlc_exposure_arg: crate::lightning::util::config::MaxDustHTLCExposure, mut force_close_avoidance_max_fee_satoshis_arg: u64, mut accept_underpaying_htlcs_arg: bool) -> ChannelConfig {
1357         ChannelConfig { inner: ObjOps::heap_alloc(nativeChannelConfig {
1358                 forwarding_fee_proportional_millionths: forwarding_fee_proportional_millionths_arg,
1359                 forwarding_fee_base_msat: forwarding_fee_base_msat_arg,
1360                 cltv_expiry_delta: cltv_expiry_delta_arg,
1361                 max_dust_htlc_exposure: max_dust_htlc_exposure_arg.into_native(),
1362                 force_close_avoidance_max_fee_satoshis: force_close_avoidance_max_fee_satoshis_arg,
1363                 accept_underpaying_htlcs: accept_underpaying_htlcs_arg,
1364         }), is_owned: true }
1365 }
1366 impl Clone for ChannelConfig {
1367         fn clone(&self) -> Self {
1368                 Self {
1369                         inner: if <*mut nativeChannelConfig>::is_null(self.inner) { core::ptr::null_mut() } else {
1370                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
1371                         is_owned: true,
1372                 }
1373         }
1374 }
1375 #[allow(unused)]
1376 /// Used only if an object of this type is returned as a trait impl by a method
1377 pub(crate) extern "C" fn ChannelConfig_clone_void(this_ptr: *const c_void) -> *mut c_void {
1378         Box::into_raw(Box::new(unsafe { (*(this_ptr as *const nativeChannelConfig)).clone() })) as *mut c_void
1379 }
1380 #[no_mangle]
1381 /// Creates a copy of the ChannelConfig
1382 pub extern "C" fn ChannelConfig_clone(orig: &ChannelConfig) -> ChannelConfig {
1383         orig.clone()
1384 }
1385 /// Get a string which allows debug introspection of a ChannelConfig object
1386 pub extern "C" fn ChannelConfig_debug_str_void(o: *const c_void) -> Str {
1387         alloc::format!("{:?}", unsafe { o as *const crate::lightning::util::config::ChannelConfig }).into()}
1388 /// Checks if two ChannelConfigs contain equal inner contents.
1389 /// This ignores pointers and is_owned flags and looks at the values in fields.
1390 /// Two objects with NULL inner values will be considered "equal" here.
1391 #[no_mangle]
1392 pub extern "C" fn ChannelConfig_eq(a: &ChannelConfig, b: &ChannelConfig) -> bool {
1393         if a.inner == b.inner { return true; }
1394         if a.inner.is_null() || b.inner.is_null() { return false; }
1395         if a.get_native_ref() == b.get_native_ref() { true } else { false }
1396 }
1397 /// Applies the given [`ChannelConfigUpdate`] as a partial update to the [`ChannelConfig`].
1398 #[no_mangle]
1399 pub extern "C" fn ChannelConfig_apply(this_arg: &mut crate::lightning::util::config::ChannelConfig, update: &crate::lightning::util::config::ChannelConfigUpdate) {
1400         unsafe { &mut (*ObjOps::untweak_ptr(this_arg.inner as *mut crate::lightning::util::config::nativeChannelConfig)) }.apply(update.get_native_ref())
1401 }
1402
1403 /// Creates a "default" ChannelConfig. See struct and individual field documentaiton for details on which values are used.
1404 #[must_use]
1405 #[no_mangle]
1406 pub extern "C" fn ChannelConfig_default() -> ChannelConfig {
1407         ChannelConfig { inner: ObjOps::heap_alloc(Default::default()), is_owned: true }
1408 }
1409 #[no_mangle]
1410 /// Serialize the ChannelConfig object into a byte array which can be read by ChannelConfig_read
1411 pub extern "C" fn ChannelConfig_write(obj: &crate::lightning::util::config::ChannelConfig) -> crate::c_types::derived::CVec_u8Z {
1412         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
1413 }
1414 #[allow(unused)]
1415 pub(crate) extern "C" fn ChannelConfig_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1416         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelConfig) })
1417 }
1418 #[no_mangle]
1419 /// Read a ChannelConfig from a byte array, created by ChannelConfig_write
1420 pub extern "C" fn ChannelConfig_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelConfigDecodeErrorZ {
1421         let res: Result<lightning::util::config::ChannelConfig, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
1422         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::util::config::ChannelConfig { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError::native_into(e) }).into() };
1423         local_res
1424 }
1425
1426 use lightning::util::config::ChannelConfigUpdate as nativeChannelConfigUpdateImport;
1427 pub(crate) type nativeChannelConfigUpdate = nativeChannelConfigUpdateImport;
1428
1429 /// A parallel struct to [`ChannelConfig`] to define partial updates.
1430 #[must_use]
1431 #[repr(C)]
1432 pub struct ChannelConfigUpdate {
1433         /// A pointer to the opaque Rust object.
1434
1435         /// Nearly everywhere, inner must be non-null, however in places where
1436         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1437         pub inner: *mut nativeChannelConfigUpdate,
1438         /// Indicates that this is the only struct which contains the same pointer.
1439
1440         /// Rust functions which take ownership of an object provided via an argument require
1441         /// this to be true and invalidate the object pointed to by inner.
1442         pub is_owned: bool,
1443 }
1444
1445 impl Drop for ChannelConfigUpdate {
1446         fn drop(&mut self) {
1447                 if self.is_owned && !<*mut nativeChannelConfigUpdate>::is_null(self.inner) {
1448                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1449                 }
1450         }
1451 }
1452 /// Frees any resources used by the ChannelConfigUpdate, if is_owned is set and inner is non-NULL.
1453 #[no_mangle]
1454 pub extern "C" fn ChannelConfigUpdate_free(this_obj: ChannelConfigUpdate) { }
1455 #[allow(unused)]
1456 /// Used only if an object of this type is returned as a trait impl by a method
1457 pub(crate) extern "C" fn ChannelConfigUpdate_free_void(this_ptr: *mut c_void) {
1458         let _ = unsafe { Box::from_raw(this_ptr as *mut nativeChannelConfigUpdate) };
1459 }
1460 #[allow(unused)]
1461 impl ChannelConfigUpdate {
1462         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelConfigUpdate {
1463                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1464         }
1465         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelConfigUpdate {
1466                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1467         }
1468         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1469         pub(crate) fn take_inner(mut self) -> *mut nativeChannelConfigUpdate {
1470                 assert!(self.is_owned);
1471                 let ret = ObjOps::untweak_ptr(self.inner);
1472                 self.inner = core::ptr::null_mut();
1473                 ret
1474         }
1475 }
1476 #[no_mangle]
1477 pub extern "C" fn ChannelConfigUpdate_get_forwarding_fee_proportional_millionths(this_ptr: &ChannelConfigUpdate) -> crate::c_types::derived::COption_u32Z {
1478         let mut inner_val = &mut this_ptr.get_native_mut_ref().forwarding_fee_proportional_millionths;
1479         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() }) };
1480         local_inner_val
1481 }
1482 #[no_mangle]
1483 pub extern "C" fn ChannelConfigUpdate_set_forwarding_fee_proportional_millionths(this_ptr: &mut ChannelConfigUpdate, mut val: crate::c_types::derived::COption_u32Z) {
1484         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
1485         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.forwarding_fee_proportional_millionths = local_val;
1486 }
1487 #[no_mangle]
1488 pub extern "C" fn ChannelConfigUpdate_get_forwarding_fee_base_msat(this_ptr: &ChannelConfigUpdate) -> crate::c_types::derived::COption_u32Z {
1489         let mut inner_val = &mut this_ptr.get_native_mut_ref().forwarding_fee_base_msat;
1490         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() }) };
1491         local_inner_val
1492 }
1493 #[no_mangle]
1494 pub extern "C" fn ChannelConfigUpdate_set_forwarding_fee_base_msat(this_ptr: &mut ChannelConfigUpdate, mut val: crate::c_types::derived::COption_u32Z) {
1495         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
1496         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.forwarding_fee_base_msat = local_val;
1497 }
1498 #[no_mangle]
1499 pub extern "C" fn ChannelConfigUpdate_get_cltv_expiry_delta(this_ptr: &ChannelConfigUpdate) -> crate::c_types::derived::COption_u16Z {
1500         let mut inner_val = &mut this_ptr.get_native_mut_ref().cltv_expiry_delta;
1501         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() }) };
1502         local_inner_val
1503 }
1504 #[no_mangle]
1505 pub extern "C" fn ChannelConfigUpdate_set_cltv_expiry_delta(this_ptr: &mut ChannelConfigUpdate, mut val: crate::c_types::derived::COption_u16Z) {
1506         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
1507         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.cltv_expiry_delta = local_val;
1508 }
1509 ///
1510 /// Returns a copy of the field.
1511 #[no_mangle]
1512 pub extern "C" fn ChannelConfigUpdate_get_max_dust_htlc_exposure_msat(this_ptr: &ChannelConfigUpdate) -> crate::c_types::derived::COption_MaxDustHTLCExposureZ {
1513         let mut inner_val = this_ptr.get_native_mut_ref().max_dust_htlc_exposure_msat.clone();
1514         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_MaxDustHTLCExposureZ::None } else { crate::c_types::derived::COption_MaxDustHTLCExposureZ::Some( { crate::lightning::util::config::MaxDustHTLCExposure::native_into(inner_val.unwrap()) }) };
1515         local_inner_val
1516 }
1517 #[no_mangle]
1518 pub extern "C" fn ChannelConfigUpdate_set_max_dust_htlc_exposure_msat(this_ptr: &mut ChannelConfigUpdate, mut val: crate::c_types::derived::COption_MaxDustHTLCExposureZ) {
1519         let mut local_val = { /*val*/ let val_opt = val; if val_opt.is_none() { None } else { Some({ { { val_opt.take() }.into_native() }})} };
1520         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.max_dust_htlc_exposure_msat = local_val;
1521 }
1522 #[no_mangle]
1523 pub extern "C" fn ChannelConfigUpdate_get_force_close_avoidance_max_fee_satoshis(this_ptr: &ChannelConfigUpdate) -> crate::c_types::derived::COption_u64Z {
1524         let mut inner_val = &mut this_ptr.get_native_mut_ref().force_close_avoidance_max_fee_satoshis;
1525         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() }) };
1526         local_inner_val
1527 }
1528 #[no_mangle]
1529 pub extern "C" fn ChannelConfigUpdate_set_force_close_avoidance_max_fee_satoshis(this_ptr: &mut ChannelConfigUpdate, mut val: crate::c_types::derived::COption_u64Z) {
1530         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
1531         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.force_close_avoidance_max_fee_satoshis = local_val;
1532 }
1533 /// Constructs a new ChannelConfigUpdate given each field
1534 #[must_use]
1535 #[no_mangle]
1536 pub extern "C" fn ChannelConfigUpdate_new(mut forwarding_fee_proportional_millionths_arg: crate::c_types::derived::COption_u32Z, mut forwarding_fee_base_msat_arg: crate::c_types::derived::COption_u32Z, mut cltv_expiry_delta_arg: crate::c_types::derived::COption_u16Z, mut max_dust_htlc_exposure_msat_arg: crate::c_types::derived::COption_MaxDustHTLCExposureZ, mut force_close_avoidance_max_fee_satoshis_arg: crate::c_types::derived::COption_u64Z) -> ChannelConfigUpdate {
1537         let mut local_forwarding_fee_proportional_millionths_arg = if forwarding_fee_proportional_millionths_arg.is_some() { Some( { forwarding_fee_proportional_millionths_arg.take() }) } else { None };
1538         let mut local_forwarding_fee_base_msat_arg = if forwarding_fee_base_msat_arg.is_some() { Some( { forwarding_fee_base_msat_arg.take() }) } else { None };
1539         let mut local_cltv_expiry_delta_arg = if cltv_expiry_delta_arg.is_some() { Some( { cltv_expiry_delta_arg.take() }) } else { None };
1540         let mut local_max_dust_htlc_exposure_msat_arg = { /*max_dust_htlc_exposure_msat_arg*/ let max_dust_htlc_exposure_msat_arg_opt = max_dust_htlc_exposure_msat_arg; if max_dust_htlc_exposure_msat_arg_opt.is_none() { None } else { Some({ { { max_dust_htlc_exposure_msat_arg_opt.take() }.into_native() }})} };
1541         let mut local_force_close_avoidance_max_fee_satoshis_arg = if force_close_avoidance_max_fee_satoshis_arg.is_some() { Some( { force_close_avoidance_max_fee_satoshis_arg.take() }) } else { None };
1542         ChannelConfigUpdate { inner: ObjOps::heap_alloc(nativeChannelConfigUpdate {
1543                 forwarding_fee_proportional_millionths: local_forwarding_fee_proportional_millionths_arg,
1544                 forwarding_fee_base_msat: local_forwarding_fee_base_msat_arg,
1545                 cltv_expiry_delta: local_cltv_expiry_delta_arg,
1546                 max_dust_htlc_exposure_msat: local_max_dust_htlc_exposure_msat_arg,
1547                 force_close_avoidance_max_fee_satoshis: local_force_close_avoidance_max_fee_satoshis_arg,
1548         }), is_owned: true }
1549 }
1550 /// Creates a "default" ChannelConfigUpdate. See struct and individual field documentaiton for details on which values are used.
1551 #[must_use]
1552 #[no_mangle]
1553 pub extern "C" fn ChannelConfigUpdate_default() -> ChannelConfigUpdate {
1554         ChannelConfigUpdate { inner: ObjOps::heap_alloc(Default::default()), is_owned: true }
1555 }
1556
1557 use lightning::util::config::UserConfig as nativeUserConfigImport;
1558 pub(crate) type nativeUserConfig = nativeUserConfigImport;
1559
1560 /// Top-level config which holds ChannelHandshakeLimits and ChannelConfig.
1561 ///
1562 /// Default::default() provides sane defaults for most configurations
1563 /// (but currently with 0 relay fees!)
1564 #[must_use]
1565 #[repr(C)]
1566 pub struct UserConfig {
1567         /// A pointer to the opaque Rust object.
1568
1569         /// Nearly everywhere, inner must be non-null, however in places where
1570         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1571         pub inner: *mut nativeUserConfig,
1572         /// Indicates that this is the only struct which contains the same pointer.
1573
1574         /// Rust functions which take ownership of an object provided via an argument require
1575         /// this to be true and invalidate the object pointed to by inner.
1576         pub is_owned: bool,
1577 }
1578
1579 impl Drop for UserConfig {
1580         fn drop(&mut self) {
1581                 if self.is_owned && !<*mut nativeUserConfig>::is_null(self.inner) {
1582                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1583                 }
1584         }
1585 }
1586 /// Frees any resources used by the UserConfig, if is_owned is set and inner is non-NULL.
1587 #[no_mangle]
1588 pub extern "C" fn UserConfig_free(this_obj: UserConfig) { }
1589 #[allow(unused)]
1590 /// Used only if an object of this type is returned as a trait impl by a method
1591 pub(crate) extern "C" fn UserConfig_free_void(this_ptr: *mut c_void) {
1592         let _ = unsafe { Box::from_raw(this_ptr as *mut nativeUserConfig) };
1593 }
1594 #[allow(unused)]
1595 impl UserConfig {
1596         pub(crate) fn get_native_ref(&self) -> &'static nativeUserConfig {
1597                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1598         }
1599         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeUserConfig {
1600                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1601         }
1602         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1603         pub(crate) fn take_inner(mut self) -> *mut nativeUserConfig {
1604                 assert!(self.is_owned);
1605                 let ret = ObjOps::untweak_ptr(self.inner);
1606                 self.inner = core::ptr::null_mut();
1607                 ret
1608         }
1609 }
1610 /// Channel handshake config that we propose to our counterparty.
1611 #[no_mangle]
1612 pub extern "C" fn UserConfig_get_channel_handshake_config(this_ptr: &UserConfig) -> crate::lightning::util::config::ChannelHandshakeConfig {
1613         let mut inner_val = &mut this_ptr.get_native_mut_ref().channel_handshake_config;
1614         crate::lightning::util::config::ChannelHandshakeConfig { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::util::config::ChannelHandshakeConfig<>) as *mut _) }, is_owned: false }
1615 }
1616 /// Channel handshake config that we propose to our counterparty.
1617 #[no_mangle]
1618 pub extern "C" fn UserConfig_set_channel_handshake_config(this_ptr: &mut UserConfig, mut val: crate::lightning::util::config::ChannelHandshakeConfig) {
1619         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.channel_handshake_config = *unsafe { Box::from_raw(val.take_inner()) };
1620 }
1621 /// Limits applied to our counterparty's proposed channel handshake config settings.
1622 #[no_mangle]
1623 pub extern "C" fn UserConfig_get_channel_handshake_limits(this_ptr: &UserConfig) -> crate::lightning::util::config::ChannelHandshakeLimits {
1624         let mut inner_val = &mut this_ptr.get_native_mut_ref().channel_handshake_limits;
1625         crate::lightning::util::config::ChannelHandshakeLimits { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::util::config::ChannelHandshakeLimits<>) as *mut _) }, is_owned: false }
1626 }
1627 /// Limits applied to our counterparty's proposed channel handshake config settings.
1628 #[no_mangle]
1629 pub extern "C" fn UserConfig_set_channel_handshake_limits(this_ptr: &mut UserConfig, mut val: crate::lightning::util::config::ChannelHandshakeLimits) {
1630         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.channel_handshake_limits = *unsafe { Box::from_raw(val.take_inner()) };
1631 }
1632 /// Channel config which affects behavior during channel lifetime.
1633 #[no_mangle]
1634 pub extern "C" fn UserConfig_get_channel_config(this_ptr: &UserConfig) -> crate::lightning::util::config::ChannelConfig {
1635         let mut inner_val = &mut this_ptr.get_native_mut_ref().channel_config;
1636         crate::lightning::util::config::ChannelConfig { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::util::config::ChannelConfig<>) as *mut _) }, is_owned: false }
1637 }
1638 /// Channel config which affects behavior during channel lifetime.
1639 #[no_mangle]
1640 pub extern "C" fn UserConfig_set_channel_config(this_ptr: &mut UserConfig, mut val: crate::lightning::util::config::ChannelConfig) {
1641         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.channel_config = *unsafe { Box::from_raw(val.take_inner()) };
1642 }
1643 /// If this is set to false, we will reject any HTLCs which were to be forwarded over private
1644 /// channels. This prevents us from taking on HTLC-forwarding risk when we intend to run as a
1645 /// node which is not online reliably.
1646 ///
1647 /// For nodes which are not online reliably, you should set all channels to *not* be announced
1648 /// (using [`ChannelHandshakeConfig::announced_channel`] and
1649 /// [`ChannelHandshakeLimits::force_announced_channel_preference`]) and set this to false to
1650 /// ensure you are not exposed to any forwarding risk.
1651 ///
1652 /// Note that because you cannot change a channel's announced state after creation, there is no
1653 /// way to disable forwarding on public channels retroactively. Thus, in order to change a node
1654 /// from a publicly-announced forwarding node to a private non-forwarding node you must close
1655 /// all your channels and open new ones. For privacy, you should also change your node_id
1656 /// (swapping all private and public key material for new ones) at that time.
1657 ///
1658 /// Default value: false.
1659 #[no_mangle]
1660 pub extern "C" fn UserConfig_get_accept_forwards_to_priv_channels(this_ptr: &UserConfig) -> bool {
1661         let mut inner_val = &mut this_ptr.get_native_mut_ref().accept_forwards_to_priv_channels;
1662         *inner_val
1663 }
1664 /// If this is set to false, we will reject any HTLCs which were to be forwarded over private
1665 /// channels. This prevents us from taking on HTLC-forwarding risk when we intend to run as a
1666 /// node which is not online reliably.
1667 ///
1668 /// For nodes which are not online reliably, you should set all channels to *not* be announced
1669 /// (using [`ChannelHandshakeConfig::announced_channel`] and
1670 /// [`ChannelHandshakeLimits::force_announced_channel_preference`]) and set this to false to
1671 /// ensure you are not exposed to any forwarding risk.
1672 ///
1673 /// Note that because you cannot change a channel's announced state after creation, there is no
1674 /// way to disable forwarding on public channels retroactively. Thus, in order to change a node
1675 /// from a publicly-announced forwarding node to a private non-forwarding node you must close
1676 /// all your channels and open new ones. For privacy, you should also change your node_id
1677 /// (swapping all private and public key material for new ones) at that time.
1678 ///
1679 /// Default value: false.
1680 #[no_mangle]
1681 pub extern "C" fn UserConfig_set_accept_forwards_to_priv_channels(this_ptr: &mut UserConfig, mut val: bool) {
1682         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.accept_forwards_to_priv_channels = val;
1683 }
1684 /// If this is set to false, we do not accept inbound requests to open a new channel.
1685 /// Default value: true.
1686 #[no_mangle]
1687 pub extern "C" fn UserConfig_get_accept_inbound_channels(this_ptr: &UserConfig) -> bool {
1688         let mut inner_val = &mut this_ptr.get_native_mut_ref().accept_inbound_channels;
1689         *inner_val
1690 }
1691 /// If this is set to false, we do not accept inbound requests to open a new channel.
1692 /// Default value: true.
1693 #[no_mangle]
1694 pub extern "C" fn UserConfig_set_accept_inbound_channels(this_ptr: &mut UserConfig, mut val: bool) {
1695         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.accept_inbound_channels = val;
1696 }
1697 /// If this is set to true, the user needs to manually accept inbound requests to open a new
1698 /// channel.
1699 ///
1700 /// When set to true, [`Event::OpenChannelRequest`] will be triggered once a request to open a
1701 /// new inbound channel is received through a [`msgs::OpenChannel`] message. In that case, a
1702 /// [`msgs::AcceptChannel`] message will not be sent back to the counterparty node unless the
1703 /// user explicitly chooses to accept the request.
1704 ///
1705 /// Default value: false.
1706 ///
1707 /// [`Event::OpenChannelRequest`]: crate::events::Event::OpenChannelRequest
1708 /// [`msgs::OpenChannel`]: crate::ln::msgs::OpenChannel
1709 /// [`msgs::AcceptChannel`]: crate::ln::msgs::AcceptChannel
1710 #[no_mangle]
1711 pub extern "C" fn UserConfig_get_manually_accept_inbound_channels(this_ptr: &UserConfig) -> bool {
1712         let mut inner_val = &mut this_ptr.get_native_mut_ref().manually_accept_inbound_channels;
1713         *inner_val
1714 }
1715 /// If this is set to true, the user needs to manually accept inbound requests to open a new
1716 /// channel.
1717 ///
1718 /// When set to true, [`Event::OpenChannelRequest`] will be triggered once a request to open a
1719 /// new inbound channel is received through a [`msgs::OpenChannel`] message. In that case, a
1720 /// [`msgs::AcceptChannel`] message will not be sent back to the counterparty node unless the
1721 /// user explicitly chooses to accept the request.
1722 ///
1723 /// Default value: false.
1724 ///
1725 /// [`Event::OpenChannelRequest`]: crate::events::Event::OpenChannelRequest
1726 /// [`msgs::OpenChannel`]: crate::ln::msgs::OpenChannel
1727 /// [`msgs::AcceptChannel`]: crate::ln::msgs::AcceptChannel
1728 #[no_mangle]
1729 pub extern "C" fn UserConfig_set_manually_accept_inbound_channels(this_ptr: &mut UserConfig, mut val: bool) {
1730         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.manually_accept_inbound_channels = val;
1731 }
1732 ///  If this is set to true, LDK will intercept HTLCs that are attempting to be forwarded over
1733 ///  fake short channel ids generated via [`ChannelManager::get_intercept_scid`]. Upon HTLC
1734 ///  intercept, LDK will generate an [`Event::HTLCIntercepted`] which MUST be handled by the user.
1735 ///
1736 ///  Setting this to true may break backwards compatibility with LDK versions < 0.0.113.
1737 ///
1738 ///  Default value: false.
1739 ///
1740 /// [`ChannelManager::get_intercept_scid`]: crate::ln::channelmanager::ChannelManager::get_intercept_scid
1741 /// [`Event::HTLCIntercepted`]: crate::events::Event::HTLCIntercepted
1742 #[no_mangle]
1743 pub extern "C" fn UserConfig_get_accept_intercept_htlcs(this_ptr: &UserConfig) -> bool {
1744         let mut inner_val = &mut this_ptr.get_native_mut_ref().accept_intercept_htlcs;
1745         *inner_val
1746 }
1747 ///  If this is set to true, LDK will intercept HTLCs that are attempting to be forwarded over
1748 ///  fake short channel ids generated via [`ChannelManager::get_intercept_scid`]. Upon HTLC
1749 ///  intercept, LDK will generate an [`Event::HTLCIntercepted`] which MUST be handled by the user.
1750 ///
1751 ///  Setting this to true may break backwards compatibility with LDK versions < 0.0.113.
1752 ///
1753 ///  Default value: false.
1754 ///
1755 /// [`ChannelManager::get_intercept_scid`]: crate::ln::channelmanager::ChannelManager::get_intercept_scid
1756 /// [`Event::HTLCIntercepted`]: crate::events::Event::HTLCIntercepted
1757 #[no_mangle]
1758 pub extern "C" fn UserConfig_set_accept_intercept_htlcs(this_ptr: &mut UserConfig, mut val: bool) {
1759         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.accept_intercept_htlcs = val;
1760 }
1761 /// If this is set to false, when receiving a keysend payment we'll fail it if it has multiple
1762 /// parts. If this is set to true, we'll accept the payment.
1763 ///
1764 /// Setting this to true will break backwards compatibility upon downgrading to an LDK
1765 /// version < 0.0.116 while receiving an MPP keysend. If we have already received an MPP
1766 /// keysend, downgrading will cause us to fail to deserialize [`ChannelManager`].
1767 ///
1768 /// Default value: false.
1769 ///
1770 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
1771 #[no_mangle]
1772 pub extern "C" fn UserConfig_get_accept_mpp_keysend(this_ptr: &UserConfig) -> bool {
1773         let mut inner_val = &mut this_ptr.get_native_mut_ref().accept_mpp_keysend;
1774         *inner_val
1775 }
1776 /// If this is set to false, when receiving a keysend payment we'll fail it if it has multiple
1777 /// parts. If this is set to true, we'll accept the payment.
1778 ///
1779 /// Setting this to true will break backwards compatibility upon downgrading to an LDK
1780 /// version < 0.0.116 while receiving an MPP keysend. If we have already received an MPP
1781 /// keysend, downgrading will cause us to fail to deserialize [`ChannelManager`].
1782 ///
1783 /// Default value: false.
1784 ///
1785 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
1786 #[no_mangle]
1787 pub extern "C" fn UserConfig_set_accept_mpp_keysend(this_ptr: &mut UserConfig, mut val: bool) {
1788         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.accept_mpp_keysend = val;
1789 }
1790 /// Constructs a new UserConfig given each field
1791 #[must_use]
1792 #[no_mangle]
1793 pub extern "C" fn UserConfig_new(mut channel_handshake_config_arg: crate::lightning::util::config::ChannelHandshakeConfig, mut channel_handshake_limits_arg: crate::lightning::util::config::ChannelHandshakeLimits, mut channel_config_arg: crate::lightning::util::config::ChannelConfig, mut accept_forwards_to_priv_channels_arg: bool, mut accept_inbound_channels_arg: bool, mut manually_accept_inbound_channels_arg: bool, mut accept_intercept_htlcs_arg: bool, mut accept_mpp_keysend_arg: bool) -> UserConfig {
1794         UserConfig { inner: ObjOps::heap_alloc(nativeUserConfig {
1795                 channel_handshake_config: *unsafe { Box::from_raw(channel_handshake_config_arg.take_inner()) },
1796                 channel_handshake_limits: *unsafe { Box::from_raw(channel_handshake_limits_arg.take_inner()) },
1797                 channel_config: *unsafe { Box::from_raw(channel_config_arg.take_inner()) },
1798                 accept_forwards_to_priv_channels: accept_forwards_to_priv_channels_arg,
1799                 accept_inbound_channels: accept_inbound_channels_arg,
1800                 manually_accept_inbound_channels: manually_accept_inbound_channels_arg,
1801                 accept_intercept_htlcs: accept_intercept_htlcs_arg,
1802                 accept_mpp_keysend: accept_mpp_keysend_arg,
1803         }), is_owned: true }
1804 }
1805 impl Clone for UserConfig {
1806         fn clone(&self) -> Self {
1807                 Self {
1808                         inner: if <*mut nativeUserConfig>::is_null(self.inner) { core::ptr::null_mut() } else {
1809                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
1810                         is_owned: true,
1811                 }
1812         }
1813 }
1814 #[allow(unused)]
1815 /// Used only if an object of this type is returned as a trait impl by a method
1816 pub(crate) extern "C" fn UserConfig_clone_void(this_ptr: *const c_void) -> *mut c_void {
1817         Box::into_raw(Box::new(unsafe { (*(this_ptr as *const nativeUserConfig)).clone() })) as *mut c_void
1818 }
1819 #[no_mangle]
1820 /// Creates a copy of the UserConfig
1821 pub extern "C" fn UserConfig_clone(orig: &UserConfig) -> UserConfig {
1822         orig.clone()
1823 }
1824 /// Get a string which allows debug introspection of a UserConfig object
1825 pub extern "C" fn UserConfig_debug_str_void(o: *const c_void) -> Str {
1826         alloc::format!("{:?}", unsafe { o as *const crate::lightning::util::config::UserConfig }).into()}
1827 /// Creates a "default" UserConfig. See struct and individual field documentaiton for details on which values are used.
1828 #[must_use]
1829 #[no_mangle]
1830 pub extern "C" fn UserConfig_default() -> UserConfig {
1831         UserConfig { inner: ObjOps::heap_alloc(Default::default()), is_owned: true }
1832 }