Update auto-generated bindings
[ldk-c-bindings] / lightning-c-bindings / src / lightning / ln / peer_handler.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 //! Top level peer message handling and socket handling logic lives here.
10 //!
11 //! Instead of actually servicing sockets ourselves we require that you implement the
12 //! SocketDescriptor interface and use that to receive actions which you should perform on the
13 //! socket, and call into PeerManager with bytes read from the socket. The PeerManager will then
14 //! call into the provided message handlers (probably a ChannelManager and NetGraphmsgHandler) with messages
15 //! they should handle, and encoding/sending response messages.
16
17 use alloc::str::FromStr;
18 use core::ffi::c_void;
19 use core::convert::Infallible;
20 use bitcoin::hashes::Hash;
21 use crate::c_types::*;
22 #[cfg(feature="no-std")]
23 use alloc::{vec::Vec, boxed::Box};
24
25 /// Handler for BOLT1-compliant messages.
26 #[repr(C)]
27 pub struct CustomMessageHandler {
28         /// An opaque pointer which is passed to your function implementations as an argument.
29         /// This has no meaning in the LDK, and can be NULL or any other value.
30         pub this_arg: *mut c_void,
31         /// Called with the message type that was received and the buffer to be read.
32         /// Can return a `MessageHandlingError` if the message could not be handled.
33         #[must_use]
34         pub handle_custom_message: extern "C" fn (this_arg: *const c_void, msg: crate::lightning::ln::wire::Type, sender_node_id: crate::c_types::PublicKey) -> crate::c_types::derived::CResult_NoneLightningErrorZ,
35         /// Gets the list of pending messages which were generated by the custom message
36         /// handler, clearing the list in the process. The first tuple element must
37         /// correspond to the intended recipients node ids. If no connection to one of the
38         /// specified node does not exist, the message is simply not sent to it.
39         #[must_use]
40         pub get_and_clear_pending_msg: extern "C" fn (this_arg: *const c_void) -> crate::c_types::derived::CVec_C2Tuple_PublicKeyTypeZZ,
41         /// Implementation of CustomMessageReader for this object.
42         pub CustomMessageReader: crate::lightning::ln::wire::CustomMessageReader,
43         /// Frees any resources associated with this object given its this_arg pointer.
44         /// Does not need to free the outer struct containing function pointers and may be NULL is no resources need to be freed.
45         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
46 }
47 unsafe impl Send for CustomMessageHandler {}
48 unsafe impl Sync for CustomMessageHandler {}
49 #[no_mangle]
50 pub(crate) extern "C" fn CustomMessageHandler_clone_fields(orig: &CustomMessageHandler) -> CustomMessageHandler {
51         CustomMessageHandler {
52                 this_arg: orig.this_arg,
53                 handle_custom_message: Clone::clone(&orig.handle_custom_message),
54                 get_and_clear_pending_msg: Clone::clone(&orig.get_and_clear_pending_msg),
55                 CustomMessageReader: crate::lightning::ln::wire::CustomMessageReader_clone_fields(&orig.CustomMessageReader),
56                 free: Clone::clone(&orig.free),
57         }
58 }
59 impl lightning::ln::wire::CustomMessageReader for CustomMessageHandler {
60         type CustomMessage = crate::lightning::ln::wire::Type;
61         fn read<R:crate::c_types::io::Read>(&self, mut message_type: u16, mut buffer: &mut R) -> Result<Option<crate::lightning::ln::wire::Type>, lightning::ln::msgs::DecodeError> {
62                 let mut ret = (self.CustomMessageReader.read)(self.CustomMessageReader.this_arg, message_type, crate::c_types::u8slice::from_vec(&crate::c_types::reader_to_vec(buffer)));
63                 let mut local_ret = match ret.result_ok { true => Ok( { let mut local_ret_0 = { /* (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) })*/ let ret_0_opt = (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }); { } if ret_0_opt.is_none() { None } else { Some({ ret_0_opt.take() }) } }; local_ret_0 }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
64                 local_ret
65         }
66 }
67
68 use lightning::ln::peer_handler::CustomMessageHandler as rustCustomMessageHandler;
69 impl rustCustomMessageHandler for CustomMessageHandler {
70         fn handle_custom_message(&self, mut msg: crate::lightning::ln::wire::Type, mut sender_node_id: &bitcoin::secp256k1::key::PublicKey) -> Result<(), lightning::ln::msgs::LightningError> {
71                 let mut ret = (self.handle_custom_message)(self.this_arg, Into::into(msg), crate::c_types::PublicKey::from_rust(&sender_node_id));
72                 let mut local_ret = match ret.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) })*/ }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
73                 local_ret
74         }
75         fn get_and_clear_pending_msg(&self) -> Vec<(bitcoin::secp256k1::key::PublicKey, crate::lightning::ln::wire::Type)> {
76                 let mut ret = (self.get_and_clear_pending_msg)(self.this_arg);
77                 let mut local_ret = Vec::new(); for mut item in ret.into_rust().drain(..) { local_ret.push( { let (mut orig_ret_0_0, mut orig_ret_0_1) = item.to_rust(); let mut local_ret_0 = (orig_ret_0_0.into_rust(), orig_ret_0_1); local_ret_0 }); };
78                 local_ret
79         }
80 }
81
82 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
83 // directly as a Deref trait in higher-level structs:
84 impl core::ops::Deref for CustomMessageHandler {
85         type Target = Self;
86         fn deref(&self) -> &Self {
87                 self
88         }
89 }
90 /// Calls the free function if one is set
91 #[no_mangle]
92 pub extern "C" fn CustomMessageHandler_free(this_ptr: CustomMessageHandler) { }
93 impl Drop for CustomMessageHandler {
94         fn drop(&mut self) {
95                 if let Some(f) = self.free {
96                         f(self.this_arg);
97                 }
98         }
99 }
100
101 use lightning::ln::peer_handler::IgnoringMessageHandler as nativeIgnoringMessageHandlerImport;
102 pub(crate) type nativeIgnoringMessageHandler = nativeIgnoringMessageHandlerImport;
103
104 /// A dummy struct which implements `RoutingMessageHandler` without storing any routing information
105 /// or doing any processing. You can provide one of these as the route_handler in a MessageHandler.
106 #[must_use]
107 #[repr(C)]
108 pub struct IgnoringMessageHandler {
109         /// A pointer to the opaque Rust object.
110
111         /// Nearly everywhere, inner must be non-null, however in places where
112         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
113         pub inner: *mut nativeIgnoringMessageHandler,
114         /// Indicates that this is the only struct which contains the same pointer.
115
116         /// Rust functions which take ownership of an object provided via an argument require
117         /// this to be true and invalidate the object pointed to by inner.
118         pub is_owned: bool,
119 }
120
121 impl Drop for IgnoringMessageHandler {
122         fn drop(&mut self) {
123                 if self.is_owned && !<*mut nativeIgnoringMessageHandler>::is_null(self.inner) {
124                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
125                 }
126         }
127 }
128 /// Frees any resources used by the IgnoringMessageHandler, if is_owned is set and inner is non-NULL.
129 #[no_mangle]
130 pub extern "C" fn IgnoringMessageHandler_free(this_obj: IgnoringMessageHandler) { }
131 #[allow(unused)]
132 /// Used only if an object of this type is returned as a trait impl by a method
133 pub(crate) extern "C" fn IgnoringMessageHandler_free_void(this_ptr: *mut c_void) {
134         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeIgnoringMessageHandler); }
135 }
136 #[allow(unused)]
137 impl IgnoringMessageHandler {
138         pub(crate) fn get_native_ref(&self) -> &'static nativeIgnoringMessageHandler {
139                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
140         }
141         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeIgnoringMessageHandler {
142                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
143         }
144         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
145         pub(crate) fn take_inner(mut self) -> *mut nativeIgnoringMessageHandler {
146                 assert!(self.is_owned);
147                 let ret = ObjOps::untweak_ptr(self.inner);
148                 self.inner = core::ptr::null_mut();
149                 ret
150         }
151 }
152 /// Constructs a new IgnoringMessageHandler given each field
153 #[must_use]
154 #[no_mangle]
155 pub extern "C" fn IgnoringMessageHandler_new() -> IgnoringMessageHandler {
156         IgnoringMessageHandler { inner: ObjOps::heap_alloc(nativeIgnoringMessageHandler {
157         }), is_owned: true }
158 }
159 impl From<nativeIgnoringMessageHandler> for crate::lightning::util::events::MessageSendEventsProvider {
160         fn from(obj: nativeIgnoringMessageHandler) -> Self {
161                 let mut rust_obj = IgnoringMessageHandler { inner: ObjOps::heap_alloc(obj), is_owned: true };
162                 let mut ret = IgnoringMessageHandler_as_MessageSendEventsProvider(&rust_obj);
163                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
164                 rust_obj.inner = core::ptr::null_mut();
165                 ret.free = Some(IgnoringMessageHandler_free_void);
166                 ret
167         }
168 }
169 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
170 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
171 #[no_mangle]
172 pub extern "C" fn IgnoringMessageHandler_as_MessageSendEventsProvider(this_arg: &IgnoringMessageHandler) -> crate::lightning::util::events::MessageSendEventsProvider {
173         crate::lightning::util::events::MessageSendEventsProvider {
174                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
175                 free: None,
176                 get_and_clear_pending_msg_events: IgnoringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
177         }
178 }
179
180 #[must_use]
181 extern "C" fn IgnoringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
182         let mut ret = <nativeIgnoringMessageHandler as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, );
183         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
184         local_ret.into()
185 }
186
187 impl From<nativeIgnoringMessageHandler> for crate::lightning::ln::msgs::RoutingMessageHandler {
188         fn from(obj: nativeIgnoringMessageHandler) -> Self {
189                 let mut rust_obj = IgnoringMessageHandler { inner: ObjOps::heap_alloc(obj), is_owned: true };
190                 let mut ret = IgnoringMessageHandler_as_RoutingMessageHandler(&rust_obj);
191                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
192                 rust_obj.inner = core::ptr::null_mut();
193                 ret.free = Some(IgnoringMessageHandler_free_void);
194                 ret
195         }
196 }
197 /// Constructs a new RoutingMessageHandler which calls the relevant methods on this_arg.
198 /// This copies the `inner` pointer in this_arg and thus the returned RoutingMessageHandler must be freed before this_arg is
199 #[no_mangle]
200 pub extern "C" fn IgnoringMessageHandler_as_RoutingMessageHandler(this_arg: &IgnoringMessageHandler) -> crate::lightning::ln::msgs::RoutingMessageHandler {
201         crate::lightning::ln::msgs::RoutingMessageHandler {
202                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
203                 free: None,
204                 handle_node_announcement: IgnoringMessageHandler_RoutingMessageHandler_handle_node_announcement,
205                 handle_channel_announcement: IgnoringMessageHandler_RoutingMessageHandler_handle_channel_announcement,
206                 handle_channel_update: IgnoringMessageHandler_RoutingMessageHandler_handle_channel_update,
207                 get_next_channel_announcements: IgnoringMessageHandler_RoutingMessageHandler_get_next_channel_announcements,
208                 get_next_node_announcements: IgnoringMessageHandler_RoutingMessageHandler_get_next_node_announcements,
209                 sync_routing_table: IgnoringMessageHandler_RoutingMessageHandler_sync_routing_table,
210                 handle_reply_channel_range: IgnoringMessageHandler_RoutingMessageHandler_handle_reply_channel_range,
211                 handle_reply_short_channel_ids_end: IgnoringMessageHandler_RoutingMessageHandler_handle_reply_short_channel_ids_end,
212                 handle_query_channel_range: IgnoringMessageHandler_RoutingMessageHandler_handle_query_channel_range,
213                 handle_query_short_channel_ids: IgnoringMessageHandler_RoutingMessageHandler_handle_query_short_channel_ids,
214                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
215                         this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
216                         free: None,
217                         get_and_clear_pending_msg_events: IgnoringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
218                 },
219         }
220 }
221
222 #[must_use]
223 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_node_announcement(this_arg: *const c_void, _msg: &crate::lightning::ln::msgs::NodeAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ {
224         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_node_announcement(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, _msg.get_native_ref());
225         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { o }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
226         local_ret
227 }
228 #[must_use]
229 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_channel_announcement(this_arg: *const c_void, _msg: &crate::lightning::ln::msgs::ChannelAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ {
230         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_channel_announcement(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, _msg.get_native_ref());
231         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { o }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
232         local_ret
233 }
234 #[must_use]
235 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_channel_update(this_arg: *const c_void, _msg: &crate::lightning::ln::msgs::ChannelUpdate) -> crate::c_types::derived::CResult_boolLightningErrorZ {
236         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, _msg.get_native_ref());
237         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { o }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
238         local_ret
239 }
240 #[must_use]
241 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_get_next_channel_announcements(this_arg: *const c_void, mut _starting_point: u64, mut _batch_amount: u8) -> crate::c_types::derived::CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ {
242         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::get_next_channel_announcements(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, _starting_point, _batch_amount);
243         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { let (mut orig_ret_0_0, mut orig_ret_0_1, mut orig_ret_0_2) = item; let mut local_orig_ret_0_1 = crate::lightning::ln::msgs::ChannelUpdate { inner: if orig_ret_0_1.is_none() { core::ptr::null_mut() } else {  { ObjOps::heap_alloc((orig_ret_0_1.unwrap())) } }, is_owned: true }; let mut local_orig_ret_0_2 = crate::lightning::ln::msgs::ChannelUpdate { inner: if orig_ret_0_2.is_none() { core::ptr::null_mut() } else {  { ObjOps::heap_alloc((orig_ret_0_2.unwrap())) } }, is_owned: true }; let mut local_ret_0 = (crate::lightning::ln::msgs::ChannelAnnouncement { inner: ObjOps::heap_alloc(orig_ret_0_0), is_owned: true }, local_orig_ret_0_1, local_orig_ret_0_2).into(); local_ret_0 }); };
244         local_ret.into()
245 }
246 #[must_use]
247 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_get_next_node_announcements(this_arg: *const c_void, mut _starting_point: crate::c_types::PublicKey, mut _batch_amount: u8) -> crate::c_types::derived::CVec_NodeAnnouncementZ {
248         let mut local__starting_point_base = if _starting_point.is_null() { None } else { Some( { _starting_point.into_rust() }) }; let mut local__starting_point = local__starting_point_base.as_ref();
249         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::get_next_node_announcements(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, local__starting_point, _batch_amount);
250         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::msgs::NodeAnnouncement { inner: ObjOps::heap_alloc(item), is_owned: true } }); };
251         local_ret.into()
252 }
253 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_sync_routing_table(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, _init: &crate::lightning::ln::msgs::Init) {
254         <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::sync_routing_table(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), _init.get_native_ref())
255 }
256 #[must_use]
257 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_reply_channel_range(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::lightning::ln::msgs::ReplyChannelRange) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
258         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_reply_channel_range(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
259         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
260         local_ret
261 }
262 #[must_use]
263 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_reply_short_channel_ids_end(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::lightning::ln::msgs::ReplyShortChannelIdsEnd) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
264         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_reply_short_channel_ids_end(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
265         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
266         local_ret
267 }
268 #[must_use]
269 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_query_channel_range(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::lightning::ln::msgs::QueryChannelRange) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
270         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_query_channel_range(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
271         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
272         local_ret
273 }
274 #[must_use]
275 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_query_short_channel_ids(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::lightning::ln::msgs::QueryShortChannelIds) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
276         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_query_short_channel_ids(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
277         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
278         local_ret
279 }
280
281 use core::convert::Infallible as nativeInfallible;
282 impl From<nativeInfallible> for crate::lightning::ln::wire::Type {
283         fn from(obj: nativeInfallible) -> Self {
284                 unreachable!();
285         }
286 }
287 impl From<nativeIgnoringMessageHandler> for crate::lightning::ln::wire::CustomMessageReader {
288         fn from(obj: nativeIgnoringMessageHandler) -> Self {
289                 let mut rust_obj = IgnoringMessageHandler { inner: ObjOps::heap_alloc(obj), is_owned: true };
290                 let mut ret = IgnoringMessageHandler_as_CustomMessageReader(&rust_obj);
291                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
292                 rust_obj.inner = core::ptr::null_mut();
293                 ret.free = Some(IgnoringMessageHandler_free_void);
294                 ret
295         }
296 }
297 /// Constructs a new CustomMessageReader which calls the relevant methods on this_arg.
298 /// This copies the `inner` pointer in this_arg and thus the returned CustomMessageReader must be freed before this_arg is
299 #[no_mangle]
300 pub extern "C" fn IgnoringMessageHandler_as_CustomMessageReader(this_arg: &IgnoringMessageHandler) -> crate::lightning::ln::wire::CustomMessageReader {
301         crate::lightning::ln::wire::CustomMessageReader {
302                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
303                 free: None,
304                 read: IgnoringMessageHandler_CustomMessageReader_read,
305         }
306 }
307
308 #[must_use]
309 extern "C" fn IgnoringMessageHandler_CustomMessageReader_read(this_arg: *const c_void, mut _message_type: u16, mut _buffer: crate::c_types::u8slice) -> crate::c_types::derived::CResult_COption_TypeZDecodeErrorZ {
310         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::wire::CustomMessageReader<>>::read(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, _message_type, &mut _buffer.to_reader());
311         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_ret_0 = if o.is_none() { crate::c_types::derived::COption_TypeZ::None } else { crate::c_types::derived::COption_TypeZ::Some( { Into::into(o.unwrap()) }) }; local_ret_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
312         local_ret
313 }
314
315 impl From<nativeIgnoringMessageHandler> for crate::lightning::ln::peer_handler::CustomMessageHandler {
316         fn from(obj: nativeIgnoringMessageHandler) -> Self {
317                 let mut rust_obj = IgnoringMessageHandler { inner: ObjOps::heap_alloc(obj), is_owned: true };
318                 let mut ret = IgnoringMessageHandler_as_CustomMessageHandler(&rust_obj);
319                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
320                 rust_obj.inner = core::ptr::null_mut();
321                 ret.free = Some(IgnoringMessageHandler_free_void);
322                 ret
323         }
324 }
325 /// Constructs a new CustomMessageHandler which calls the relevant methods on this_arg.
326 /// This copies the `inner` pointer in this_arg and thus the returned CustomMessageHandler must be freed before this_arg is
327 #[no_mangle]
328 pub extern "C" fn IgnoringMessageHandler_as_CustomMessageHandler(this_arg: &IgnoringMessageHandler) -> crate::lightning::ln::peer_handler::CustomMessageHandler {
329         crate::lightning::ln::peer_handler::CustomMessageHandler {
330                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
331                 free: None,
332                 handle_custom_message: IgnoringMessageHandler_CustomMessageHandler_handle_custom_message,
333                 get_and_clear_pending_msg: IgnoringMessageHandler_CustomMessageHandler_get_and_clear_pending_msg,
334                 CustomMessageReader: crate::lightning::ln::wire::CustomMessageReader {
335                         this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
336                         free: None,
337                         read: IgnoringMessageHandler_CustomMessageReader_read,
338                 },
339         }
340 }
341
342 #[must_use]
343 extern "C" fn IgnoringMessageHandler_CustomMessageHandler_handle_custom_message(this_arg: *const c_void, mut msg: crate::lightning::ln::wire::Type, mut sender_node_id: crate::c_types::PublicKey) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
344         unreachable!();
345 }
346 #[must_use]
347 extern "C" fn IgnoringMessageHandler_CustomMessageHandler_get_and_clear_pending_msg(this_arg: *const c_void) -> crate::c_types::derived::CVec_C2Tuple_PublicKeyTypeZZ {
348         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::peer_handler::CustomMessageHandler<>>::get_and_clear_pending_msg(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, );
349         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { let (mut orig_ret_0_0, mut orig_ret_0_1) = item; let mut local_ret_0 = (crate::c_types::PublicKey::from_rust(&orig_ret_0_0), Into::into(orig_ret_0_1)).into(); local_ret_0 }); };
350         local_ret.into()
351 }
352
353
354 use lightning::ln::peer_handler::ErroringMessageHandler as nativeErroringMessageHandlerImport;
355 pub(crate) type nativeErroringMessageHandler = nativeErroringMessageHandlerImport;
356
357 /// A dummy struct which implements `ChannelMessageHandler` without having any channels.
358 /// You can provide one of these as the route_handler in a MessageHandler.
359 #[must_use]
360 #[repr(C)]
361 pub struct ErroringMessageHandler {
362         /// A pointer to the opaque Rust object.
363
364         /// Nearly everywhere, inner must be non-null, however in places where
365         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
366         pub inner: *mut nativeErroringMessageHandler,
367         /// Indicates that this is the only struct which contains the same pointer.
368
369         /// Rust functions which take ownership of an object provided via an argument require
370         /// this to be true and invalidate the object pointed to by inner.
371         pub is_owned: bool,
372 }
373
374 impl Drop for ErroringMessageHandler {
375         fn drop(&mut self) {
376                 if self.is_owned && !<*mut nativeErroringMessageHandler>::is_null(self.inner) {
377                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
378                 }
379         }
380 }
381 /// Frees any resources used by the ErroringMessageHandler, if is_owned is set and inner is non-NULL.
382 #[no_mangle]
383 pub extern "C" fn ErroringMessageHandler_free(this_obj: ErroringMessageHandler) { }
384 #[allow(unused)]
385 /// Used only if an object of this type is returned as a trait impl by a method
386 pub(crate) extern "C" fn ErroringMessageHandler_free_void(this_ptr: *mut c_void) {
387         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeErroringMessageHandler); }
388 }
389 #[allow(unused)]
390 impl ErroringMessageHandler {
391         pub(crate) fn get_native_ref(&self) -> &'static nativeErroringMessageHandler {
392                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
393         }
394         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeErroringMessageHandler {
395                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
396         }
397         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
398         pub(crate) fn take_inner(mut self) -> *mut nativeErroringMessageHandler {
399                 assert!(self.is_owned);
400                 let ret = ObjOps::untweak_ptr(self.inner);
401                 self.inner = core::ptr::null_mut();
402                 ret
403         }
404 }
405 /// Constructs a new ErroringMessageHandler
406 #[must_use]
407 #[no_mangle]
408 pub extern "C" fn ErroringMessageHandler_new() -> ErroringMessageHandler {
409         let mut ret = lightning::ln::peer_handler::ErroringMessageHandler::new();
410         ErroringMessageHandler { inner: ObjOps::heap_alloc(ret), is_owned: true }
411 }
412
413 impl From<nativeErroringMessageHandler> for crate::lightning::util::events::MessageSendEventsProvider {
414         fn from(obj: nativeErroringMessageHandler) -> Self {
415                 let mut rust_obj = ErroringMessageHandler { inner: ObjOps::heap_alloc(obj), is_owned: true };
416                 let mut ret = ErroringMessageHandler_as_MessageSendEventsProvider(&rust_obj);
417                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
418                 rust_obj.inner = core::ptr::null_mut();
419                 ret.free = Some(ErroringMessageHandler_free_void);
420                 ret
421         }
422 }
423 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
424 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
425 #[no_mangle]
426 pub extern "C" fn ErroringMessageHandler_as_MessageSendEventsProvider(this_arg: &ErroringMessageHandler) -> crate::lightning::util::events::MessageSendEventsProvider {
427         crate::lightning::util::events::MessageSendEventsProvider {
428                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
429                 free: None,
430                 get_and_clear_pending_msg_events: ErroringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
431         }
432 }
433
434 #[must_use]
435 extern "C" fn ErroringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
436         let mut ret = <nativeErroringMessageHandler as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, );
437         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
438         local_ret.into()
439 }
440
441 impl From<nativeErroringMessageHandler> for crate::lightning::ln::msgs::ChannelMessageHandler {
442         fn from(obj: nativeErroringMessageHandler) -> Self {
443                 let mut rust_obj = ErroringMessageHandler { inner: ObjOps::heap_alloc(obj), is_owned: true };
444                 let mut ret = ErroringMessageHandler_as_ChannelMessageHandler(&rust_obj);
445                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
446                 rust_obj.inner = core::ptr::null_mut();
447                 ret.free = Some(ErroringMessageHandler_free_void);
448                 ret
449         }
450 }
451 /// Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
452 /// This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
453 #[no_mangle]
454 pub extern "C" fn ErroringMessageHandler_as_ChannelMessageHandler(this_arg: &ErroringMessageHandler) -> crate::lightning::ln::msgs::ChannelMessageHandler {
455         crate::lightning::ln::msgs::ChannelMessageHandler {
456                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
457                 free: None,
458                 handle_open_channel: ErroringMessageHandler_ChannelMessageHandler_handle_open_channel,
459                 handle_accept_channel: ErroringMessageHandler_ChannelMessageHandler_handle_accept_channel,
460                 handle_funding_created: ErroringMessageHandler_ChannelMessageHandler_handle_funding_created,
461                 handle_funding_signed: ErroringMessageHandler_ChannelMessageHandler_handle_funding_signed,
462                 handle_funding_locked: ErroringMessageHandler_ChannelMessageHandler_handle_funding_locked,
463                 handle_shutdown: ErroringMessageHandler_ChannelMessageHandler_handle_shutdown,
464                 handle_closing_signed: ErroringMessageHandler_ChannelMessageHandler_handle_closing_signed,
465                 handle_update_add_htlc: ErroringMessageHandler_ChannelMessageHandler_handle_update_add_htlc,
466                 handle_update_fulfill_htlc: ErroringMessageHandler_ChannelMessageHandler_handle_update_fulfill_htlc,
467                 handle_update_fail_htlc: ErroringMessageHandler_ChannelMessageHandler_handle_update_fail_htlc,
468                 handle_update_fail_malformed_htlc: ErroringMessageHandler_ChannelMessageHandler_handle_update_fail_malformed_htlc,
469                 handle_commitment_signed: ErroringMessageHandler_ChannelMessageHandler_handle_commitment_signed,
470                 handle_revoke_and_ack: ErroringMessageHandler_ChannelMessageHandler_handle_revoke_and_ack,
471                 handle_update_fee: ErroringMessageHandler_ChannelMessageHandler_handle_update_fee,
472                 handle_announcement_signatures: ErroringMessageHandler_ChannelMessageHandler_handle_announcement_signatures,
473                 peer_disconnected: ErroringMessageHandler_ChannelMessageHandler_peer_disconnected,
474                 peer_connected: ErroringMessageHandler_ChannelMessageHandler_peer_connected,
475                 handle_channel_reestablish: ErroringMessageHandler_ChannelMessageHandler_handle_channel_reestablish,
476                 handle_channel_update: ErroringMessageHandler_ChannelMessageHandler_handle_channel_update,
477                 handle_error: ErroringMessageHandler_ChannelMessageHandler_handle_error,
478                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
479                         this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
480                         free: None,
481                         get_and_clear_pending_msg_events: ErroringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
482                 },
483         }
484 }
485
486 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_open_channel(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, mut _their_features: crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::OpenChannel) {
487         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_open_channel(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), *unsafe { Box::from_raw(_their_features.take_inner()) }, msg.get_native_ref())
488 }
489 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_accept_channel(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, mut _their_features: crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::AcceptChannel) {
490         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_accept_channel(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), *unsafe { Box::from_raw(_their_features.take_inner()) }, msg.get_native_ref())
491 }
492 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_funding_created(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingCreated) {
493         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_created(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
494 }
495 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_funding_signed(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingSigned) {
496         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_signed(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
497 }
498 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_funding_locked(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingLocked) {
499         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_locked(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
500 }
501 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_shutdown(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, _their_features: &crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::Shutdown) {
502         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_shutdown(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), _their_features.get_native_ref(), msg.get_native_ref())
503 }
504 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_closing_signed(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ClosingSigned) {
505         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_closing_signed(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
506 }
507 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_add_htlc(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateAddHTLC) {
508         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_add_htlc(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
509 }
510 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_fulfill_htlc(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFulfillHTLC) {
511         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fulfill_htlc(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
512 }
513 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_fail_htlc(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailHTLC) {
514         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_htlc(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
515 }
516 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_fail_malformed_htlc(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailMalformedHTLC) {
517         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_malformed_htlc(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
518 }
519 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_commitment_signed(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::CommitmentSigned) {
520         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_commitment_signed(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
521 }
522 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_revoke_and_ack(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::RevokeAndACK) {
523         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_revoke_and_ack(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
524 }
525 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_fee(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFee) {
526         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fee(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
527 }
528 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_announcement_signatures(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::AnnouncementSignatures) {
529         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_announcement_signatures(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
530 }
531 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_channel_reestablish(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ChannelReestablish) {
532         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_reestablish(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), msg.get_native_ref())
533 }
534 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_channel_update(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, _msg: &crate::lightning::ln::msgs::ChannelUpdate) {
535         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &_their_node_id.into_rust(), _msg.get_native_ref())
536 }
537 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_peer_disconnected(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _no_connection_possible: bool) {
538         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::peer_disconnected(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &_their_node_id.into_rust(), _no_connection_possible)
539 }
540 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_peer_connected(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, _msg: &crate::lightning::ln::msgs::Init) {
541         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &_their_node_id.into_rust(), _msg.get_native_ref())
542 }
543 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_error(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, _msg: &crate::lightning::ln::msgs::ErrorMessage) {
544         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_error(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &_their_node_id.into_rust(), _msg.get_native_ref())
545 }
546
547
548 use lightning::ln::peer_handler::MessageHandler as nativeMessageHandlerImport;
549 pub(crate) type nativeMessageHandler = nativeMessageHandlerImport<crate::lightning::ln::msgs::ChannelMessageHandler, crate::lightning::ln::msgs::RoutingMessageHandler>;
550
551 /// Provides references to trait impls which handle different types of messages.
552 #[must_use]
553 #[repr(C)]
554 pub struct MessageHandler {
555         /// A pointer to the opaque Rust object.
556
557         /// Nearly everywhere, inner must be non-null, however in places where
558         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
559         pub inner: *mut nativeMessageHandler,
560         /// Indicates that this is the only struct which contains the same pointer.
561
562         /// Rust functions which take ownership of an object provided via an argument require
563         /// this to be true and invalidate the object pointed to by inner.
564         pub is_owned: bool,
565 }
566
567 impl Drop for MessageHandler {
568         fn drop(&mut self) {
569                 if self.is_owned && !<*mut nativeMessageHandler>::is_null(self.inner) {
570                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
571                 }
572         }
573 }
574 /// Frees any resources used by the MessageHandler, if is_owned is set and inner is non-NULL.
575 #[no_mangle]
576 pub extern "C" fn MessageHandler_free(this_obj: MessageHandler) { }
577 #[allow(unused)]
578 /// Used only if an object of this type is returned as a trait impl by a method
579 pub(crate) extern "C" fn MessageHandler_free_void(this_ptr: *mut c_void) {
580         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeMessageHandler); }
581 }
582 #[allow(unused)]
583 impl MessageHandler {
584         pub(crate) fn get_native_ref(&self) -> &'static nativeMessageHandler {
585                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
586         }
587         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeMessageHandler {
588                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
589         }
590         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
591         pub(crate) fn take_inner(mut self) -> *mut nativeMessageHandler {
592                 assert!(self.is_owned);
593                 let ret = ObjOps::untweak_ptr(self.inner);
594                 self.inner = core::ptr::null_mut();
595                 ret
596         }
597 }
598 /// A message handler which handles messages specific to channels. Usually this is just a
599 /// [`ChannelManager`] object or an [`ErroringMessageHandler`].
600 ///
601 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
602 #[no_mangle]
603 pub extern "C" fn MessageHandler_get_chan_handler(this_ptr: &MessageHandler) -> *const crate::lightning::ln::msgs::ChannelMessageHandler {
604         let mut inner_val = &mut this_ptr.get_native_mut_ref().chan_handler;
605         inner_val
606 }
607 /// A message handler which handles messages specific to channels. Usually this is just a
608 /// [`ChannelManager`] object or an [`ErroringMessageHandler`].
609 ///
610 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
611 #[no_mangle]
612 pub extern "C" fn MessageHandler_set_chan_handler(this_ptr: &mut MessageHandler, mut val: crate::lightning::ln::msgs::ChannelMessageHandler) {
613         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.chan_handler = val;
614 }
615 /// A message handler which handles messages updating our knowledge of the network channel
616 /// graph. Usually this is just a [`NetGraphMsgHandler`] object or an
617 /// [`IgnoringMessageHandler`].
618 ///
619 /// [`NetGraphMsgHandler`]: crate::routing::network_graph::NetGraphMsgHandler
620 #[no_mangle]
621 pub extern "C" fn MessageHandler_get_route_handler(this_ptr: &MessageHandler) -> *const crate::lightning::ln::msgs::RoutingMessageHandler {
622         let mut inner_val = &mut this_ptr.get_native_mut_ref().route_handler;
623         inner_val
624 }
625 /// A message handler which handles messages updating our knowledge of the network channel
626 /// graph. Usually this is just a [`NetGraphMsgHandler`] object or an
627 /// [`IgnoringMessageHandler`].
628 ///
629 /// [`NetGraphMsgHandler`]: crate::routing::network_graph::NetGraphMsgHandler
630 #[no_mangle]
631 pub extern "C" fn MessageHandler_set_route_handler(this_ptr: &mut MessageHandler, mut val: crate::lightning::ln::msgs::RoutingMessageHandler) {
632         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.route_handler = val;
633 }
634 /// Constructs a new MessageHandler given each field
635 #[must_use]
636 #[no_mangle]
637 pub extern "C" fn MessageHandler_new(mut chan_handler_arg: crate::lightning::ln::msgs::ChannelMessageHandler, mut route_handler_arg: crate::lightning::ln::msgs::RoutingMessageHandler) -> MessageHandler {
638         MessageHandler { inner: ObjOps::heap_alloc(nativeMessageHandler {
639                 chan_handler: chan_handler_arg,
640                 route_handler: route_handler_arg,
641         }), is_owned: true }
642 }
643 /// Provides an object which can be used to send data to and which uniquely identifies a connection
644 /// to a remote host. You will need to be able to generate multiple of these which meet Eq and
645 /// implement Hash to meet the PeerManager API.
646 ///
647 /// For efficiency, Clone should be relatively cheap for this type.
648 ///
649 /// Two descriptors may compare equal (by [`cmp::Eq`] and [`hash::Hash`]) as long as the original
650 /// has been disconnected, the [`PeerManager`] has been informed of the disconnection (either by it
651 /// having triggered the disconnection or a call to [`PeerManager::socket_disconnected`]), and no
652 /// further calls to the [`PeerManager`] related to the original socket occur. This allows you to
653 /// use a file descriptor for your SocketDescriptor directly, however for simplicity you may wish
654 /// to simply use another value which is guaranteed to be globally unique instead.
655 #[repr(C)]
656 pub struct SocketDescriptor {
657         /// An opaque pointer which is passed to your function implementations as an argument.
658         /// This has no meaning in the LDK, and can be NULL or any other value.
659         pub this_arg: *mut c_void,
660         /// Attempts to send some data from the given slice to the peer.
661         ///
662         /// Returns the amount of data which was sent, possibly 0 if the socket has since disconnected.
663         /// Note that in the disconnected case, [`PeerManager::socket_disconnected`] must still be
664         /// called and further write attempts may occur until that time.
665         ///
666         /// If the returned size is smaller than `data.len()`, a
667         /// [`PeerManager::write_buffer_space_avail`] call must be made the next time more data can be
668         /// written. Additionally, until a `send_data` event completes fully, no further
669         /// [`PeerManager::read_event`] calls should be made for the same peer! Because this is to
670         /// prevent denial-of-service issues, you should not read or buffer any data from the socket
671         /// until then.
672         ///
673         /// If a [`PeerManager::read_event`] call on this descriptor had previously returned true
674         /// (indicating that read events should be paused to prevent DoS in the send buffer),
675         /// `resume_read` may be set indicating that read events on this descriptor should resume. A
676         /// `resume_read` of false carries no meaning, and should not cause any action.
677         #[must_use]
678         pub send_data: extern "C" fn (this_arg: *mut c_void, data: crate::c_types::u8slice, resume_read: bool) -> usize,
679         /// Disconnect the socket pointed to by this SocketDescriptor.
680         ///
681         /// You do *not* need to call [`PeerManager::socket_disconnected`] with this socket after this
682         /// call (doing so is a noop).
683         pub disconnect_socket: extern "C" fn (this_arg: *mut c_void),
684         /// Checks if two objects are equal given this object's this_arg pointer and another object.
685         pub eq: extern "C" fn (this_arg: *const c_void, other_arg: &SocketDescriptor) -> bool,
686         /// Calculate a succinct non-cryptographic hash for an object given its this_arg pointer.
687         /// This is used, for example, for inclusion of this object in a hash map.
688         pub hash: extern "C" fn (this_arg: *const c_void) -> u64,
689         /// Called, if set, after this SocketDescriptor has been cloned into a duplicate object.
690         /// The new SocketDescriptor is provided, and should be mutated as needed to perform a
691         /// deep copy of the object pointed to by this_arg or avoid any double-freeing.
692         pub cloned: Option<extern "C" fn (new_SocketDescriptor: &mut SocketDescriptor)>,
693         /// Frees any resources associated with this object given its this_arg pointer.
694         /// Does not need to free the outer struct containing function pointers and may be NULL is no resources need to be freed.
695         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
696 }
697 unsafe impl Send for SocketDescriptor {}
698 unsafe impl Sync for SocketDescriptor {}
699 #[no_mangle]
700 pub(crate) extern "C" fn SocketDescriptor_clone_fields(orig: &SocketDescriptor) -> SocketDescriptor {
701         SocketDescriptor {
702                 this_arg: orig.this_arg,
703                 send_data: Clone::clone(&orig.send_data),
704                 disconnect_socket: Clone::clone(&orig.disconnect_socket),
705                 eq: Clone::clone(&orig.eq),
706                 hash: Clone::clone(&orig.hash),
707                 cloned: Clone::clone(&orig.cloned),
708                 free: Clone::clone(&orig.free),
709         }
710 }
711 impl core::cmp::Eq for SocketDescriptor {}
712 impl core::cmp::PartialEq for SocketDescriptor {
713         fn eq(&self, o: &Self) -> bool { (self.eq)(self.this_arg, o) }
714 }
715 impl core::hash::Hash for SocketDescriptor {
716         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) { hasher.write_u64((self.hash)(self.this_arg)) }
717 }
718 #[no_mangle]
719 /// Creates a copy of a SocketDescriptor
720 pub extern "C" fn SocketDescriptor_clone(orig: &SocketDescriptor) -> SocketDescriptor {
721         let mut res = SocketDescriptor_clone_fields(orig);
722         if let Some(f) = orig.cloned { (f)(&mut res) };
723         res
724 }
725 impl Clone for SocketDescriptor {
726         fn clone(&self) -> Self {
727                 SocketDescriptor_clone(self)
728         }
729 }
730
731 use lightning::ln::peer_handler::SocketDescriptor as rustSocketDescriptor;
732 impl rustSocketDescriptor for SocketDescriptor {
733         fn send_data(&mut self, mut data: &[u8], mut resume_read: bool) -> usize {
734                 let mut local_data = crate::c_types::u8slice::from_slice(data);
735                 let mut ret = (self.send_data)(self.this_arg, local_data, resume_read);
736                 ret
737         }
738         fn disconnect_socket(&mut self) {
739                 (self.disconnect_socket)(self.this_arg)
740         }
741 }
742
743 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
744 // directly as a Deref trait in higher-level structs:
745 impl core::ops::Deref for SocketDescriptor {
746         type Target = Self;
747         fn deref(&self) -> &Self {
748                 self
749         }
750 }
751 /// Calls the free function if one is set
752 #[no_mangle]
753 pub extern "C" fn SocketDescriptor_free(this_ptr: SocketDescriptor) { }
754 impl Drop for SocketDescriptor {
755         fn drop(&mut self) {
756                 if let Some(f) = self.free {
757                         f(self.this_arg);
758                 }
759         }
760 }
761
762 use lightning::ln::peer_handler::PeerHandleError as nativePeerHandleErrorImport;
763 pub(crate) type nativePeerHandleError = nativePeerHandleErrorImport;
764
765 /// Error for PeerManager errors. If you get one of these, you must disconnect the socket and
766 /// generate no further read_event/write_buffer_space_avail/socket_disconnected calls for the
767 /// descriptor.
768 #[must_use]
769 #[repr(C)]
770 pub struct PeerHandleError {
771         /// A pointer to the opaque Rust object.
772
773         /// Nearly everywhere, inner must be non-null, however in places where
774         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
775         pub inner: *mut nativePeerHandleError,
776         /// Indicates that this is the only struct which contains the same pointer.
777
778         /// Rust functions which take ownership of an object provided via an argument require
779         /// this to be true and invalidate the object pointed to by inner.
780         pub is_owned: bool,
781 }
782
783 impl Drop for PeerHandleError {
784         fn drop(&mut self) {
785                 if self.is_owned && !<*mut nativePeerHandleError>::is_null(self.inner) {
786                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
787                 }
788         }
789 }
790 /// Frees any resources used by the PeerHandleError, if is_owned is set and inner is non-NULL.
791 #[no_mangle]
792 pub extern "C" fn PeerHandleError_free(this_obj: PeerHandleError) { }
793 #[allow(unused)]
794 /// Used only if an object of this type is returned as a trait impl by a method
795 pub(crate) extern "C" fn PeerHandleError_free_void(this_ptr: *mut c_void) {
796         unsafe { let _ = Box::from_raw(this_ptr as *mut nativePeerHandleError); }
797 }
798 #[allow(unused)]
799 impl PeerHandleError {
800         pub(crate) fn get_native_ref(&self) -> &'static nativePeerHandleError {
801                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
802         }
803         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativePeerHandleError {
804                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
805         }
806         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
807         pub(crate) fn take_inner(mut self) -> *mut nativePeerHandleError {
808                 assert!(self.is_owned);
809                 let ret = ObjOps::untweak_ptr(self.inner);
810                 self.inner = core::ptr::null_mut();
811                 ret
812         }
813 }
814 /// Used to indicate that we probably can't make any future connections to this peer, implying
815 /// we should go ahead and force-close any channels we have with it.
816 #[no_mangle]
817 pub extern "C" fn PeerHandleError_get_no_connection_possible(this_ptr: &PeerHandleError) -> bool {
818         let mut inner_val = &mut this_ptr.get_native_mut_ref().no_connection_possible;
819         *inner_val
820 }
821 /// Used to indicate that we probably can't make any future connections to this peer, implying
822 /// we should go ahead and force-close any channels we have with it.
823 #[no_mangle]
824 pub extern "C" fn PeerHandleError_set_no_connection_possible(this_ptr: &mut PeerHandleError, mut val: bool) {
825         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.no_connection_possible = val;
826 }
827 /// Constructs a new PeerHandleError given each field
828 #[must_use]
829 #[no_mangle]
830 pub extern "C" fn PeerHandleError_new(mut no_connection_possible_arg: bool) -> PeerHandleError {
831         PeerHandleError { inner: ObjOps::heap_alloc(nativePeerHandleError {
832                 no_connection_possible: no_connection_possible_arg,
833         }), is_owned: true }
834 }
835 impl Clone for PeerHandleError {
836         fn clone(&self) -> Self {
837                 Self {
838                         inner: if <*mut nativePeerHandleError>::is_null(self.inner) { core::ptr::null_mut() } else {
839                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
840                         is_owned: true,
841                 }
842         }
843 }
844 #[allow(unused)]
845 /// Used only if an object of this type is returned as a trait impl by a method
846 pub(crate) extern "C" fn PeerHandleError_clone_void(this_ptr: *const c_void) -> *mut c_void {
847         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativePeerHandleError)).clone() })) as *mut c_void
848 }
849 #[no_mangle]
850 /// Creates a copy of the PeerHandleError
851 pub extern "C" fn PeerHandleError_clone(orig: &PeerHandleError) -> PeerHandleError {
852         orig.clone()
853 }
854
855 use lightning::ln::peer_handler::PeerManager as nativePeerManagerImport;
856 pub(crate) type nativePeerManager = nativePeerManagerImport<crate::lightning::ln::peer_handler::SocketDescriptor, crate::lightning::ln::msgs::ChannelMessageHandler, crate::lightning::ln::msgs::RoutingMessageHandler, crate::lightning::util::logger::Logger, crate::lightning::ln::peer_handler::CustomMessageHandler>;
857
858 /// A PeerManager manages a set of peers, described by their [`SocketDescriptor`] and marshalls
859 /// socket events into messages which it passes on to its [`MessageHandler`].
860 ///
861 /// Locks are taken internally, so you must never assume that reentrancy from a
862 /// [`SocketDescriptor`] call back into [`PeerManager`] methods will not deadlock.
863 ///
864 /// Calls to [`read_event`] will decode relevant messages and pass them to the
865 /// [`ChannelMessageHandler`], likely doing message processing in-line. Thus, the primary form of
866 /// parallelism in Rust-Lightning is in calls to [`read_event`]. Note, however, that calls to any
867 /// [`PeerManager`] functions related to the same connection must occur only in serial, making new
868 /// calls only after previous ones have returned.
869 ///
870 /// Rather than using a plain PeerManager, it is preferable to use either a SimpleArcPeerManager
871 /// a SimpleRefPeerManager, for conciseness. See their documentation for more details, but
872 /// essentially you should default to using a SimpleRefPeerManager, and use a
873 /// SimpleArcPeerManager when you require a PeerManager with a static lifetime, such as when
874 /// you're using lightning-net-tokio.
875 ///
876 /// [`read_event`]: PeerManager::read_event
877 #[must_use]
878 #[repr(C)]
879 pub struct PeerManager {
880         /// A pointer to the opaque Rust object.
881
882         /// Nearly everywhere, inner must be non-null, however in places where
883         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
884         pub inner: *mut nativePeerManager,
885         /// Indicates that this is the only struct which contains the same pointer.
886
887         /// Rust functions which take ownership of an object provided via an argument require
888         /// this to be true and invalidate the object pointed to by inner.
889         pub is_owned: bool,
890 }
891
892 impl Drop for PeerManager {
893         fn drop(&mut self) {
894                 if self.is_owned && !<*mut nativePeerManager>::is_null(self.inner) {
895                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
896                 }
897         }
898 }
899 /// Frees any resources used by the PeerManager, if is_owned is set and inner is non-NULL.
900 #[no_mangle]
901 pub extern "C" fn PeerManager_free(this_obj: PeerManager) { }
902 #[allow(unused)]
903 /// Used only if an object of this type is returned as a trait impl by a method
904 pub(crate) extern "C" fn PeerManager_free_void(this_ptr: *mut c_void) {
905         unsafe { let _ = Box::from_raw(this_ptr as *mut nativePeerManager); }
906 }
907 #[allow(unused)]
908 impl PeerManager {
909         pub(crate) fn get_native_ref(&self) -> &'static nativePeerManager {
910                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
911         }
912         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativePeerManager {
913                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
914         }
915         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
916         pub(crate) fn take_inner(mut self) -> *mut nativePeerManager {
917                 assert!(self.is_owned);
918                 let ret = ObjOps::untweak_ptr(self.inner);
919                 self.inner = core::ptr::null_mut();
920                 ret
921         }
922 }
923 /// Constructs a new PeerManager with the given message handlers and node_id secret key
924 /// ephemeral_random_data is used to derive per-connection ephemeral keys and must be
925 /// cryptographically secure random bytes.
926 #[must_use]
927 #[no_mangle]
928 pub extern "C" fn PeerManager_new(mut message_handler: crate::lightning::ln::peer_handler::MessageHandler, mut our_node_secret: crate::c_types::SecretKey, ephemeral_random_data: *const [u8; 32], mut logger: crate::lightning::util::logger::Logger, mut custom_message_handler: crate::lightning::ln::peer_handler::CustomMessageHandler) -> PeerManager {
929         let mut ret = lightning::ln::peer_handler::PeerManager::new(*unsafe { Box::from_raw(message_handler.take_inner()) }, our_node_secret.into_rust(), unsafe { &*ephemeral_random_data}, logger, custom_message_handler);
930         PeerManager { inner: ObjOps::heap_alloc(ret), is_owned: true }
931 }
932
933 /// Get the list of node ids for peers which have completed the initial handshake.
934 ///
935 /// For outbound connections, this will be the same as the their_node_id parameter passed in to
936 /// new_outbound_connection, however entries will only appear once the initial handshake has
937 /// completed and we are sure the remote peer has the private key for the given node_id.
938 #[must_use]
939 #[no_mangle]
940 pub extern "C" fn PeerManager_get_peer_node_ids(this_arg: &PeerManager) -> crate::c_types::derived::CVec_PublicKeyZ {
941         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_peer_node_ids();
942         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::c_types::PublicKey::from_rust(&item) }); };
943         local_ret.into()
944 }
945
946 /// Indicates a new outbound connection has been established to a node with the given node_id.
947 /// Note that if an Err is returned here you MUST NOT call socket_disconnected for the new
948 /// descriptor but must disconnect the connection immediately.
949 ///
950 /// Returns a small number of bytes to send to the remote node (currently always 50).
951 ///
952 /// Panics if descriptor is duplicative with some other descriptor which has not yet been
953 /// [`socket_disconnected()`].
954 ///
955 /// [`socket_disconnected()`]: PeerManager::socket_disconnected
956 #[must_use]
957 #[no_mangle]
958 pub extern "C" fn PeerManager_new_outbound_connection(this_arg: &PeerManager, mut their_node_id: crate::c_types::PublicKey, mut descriptor: crate::lightning::ln::peer_handler::SocketDescriptor) -> crate::c_types::derived::CResult_CVec_u8ZPeerHandleErrorZ {
959         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.new_outbound_connection(their_node_id.into_rust(), descriptor);
960         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_ret_0 = Vec::new(); for mut item in o.drain(..) { local_ret_0.push( { item }); }; local_ret_0.into() }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::peer_handler::PeerHandleError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
961         local_ret
962 }
963
964 /// Indicates a new inbound connection has been established.
965 ///
966 /// May refuse the connection by returning an Err, but will never write bytes to the remote end
967 /// (outbound connector always speaks first). Note that if an Err is returned here you MUST NOT
968 /// call socket_disconnected for the new descriptor but must disconnect the connection
969 /// immediately.
970 ///
971 /// Panics if descriptor is duplicative with some other descriptor which has not yet been
972 /// [`socket_disconnected()`].
973 ///
974 /// [`socket_disconnected()`]: PeerManager::socket_disconnected
975 #[must_use]
976 #[no_mangle]
977 pub extern "C" fn PeerManager_new_inbound_connection(this_arg: &PeerManager, mut descriptor: crate::lightning::ln::peer_handler::SocketDescriptor) -> crate::c_types::derived::CResult_NonePeerHandleErrorZ {
978         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.new_inbound_connection(descriptor);
979         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::peer_handler::PeerHandleError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
980         local_ret
981 }
982
983 /// Indicates that there is room to write data to the given socket descriptor.
984 ///
985 /// May return an Err to indicate that the connection should be closed.
986 ///
987 /// May call [`send_data`] on the descriptor passed in (or an equal descriptor) before
988 /// returning. Thus, be very careful with reentrancy issues! The invariants around calling
989 /// [`write_buffer_space_avail`] in case a write did not fully complete must still hold - be
990 /// ready to call `[write_buffer_space_avail`] again if a write call generated here isn't
991 /// sufficient!
992 ///
993 /// [`send_data`]: SocketDescriptor::send_data
994 /// [`write_buffer_space_avail`]: PeerManager::write_buffer_space_avail
995 #[must_use]
996 #[no_mangle]
997 pub extern "C" fn PeerManager_write_buffer_space_avail(this_arg: &PeerManager, descriptor: &mut crate::lightning::ln::peer_handler::SocketDescriptor) -> crate::c_types::derived::CResult_NonePeerHandleErrorZ {
998         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.write_buffer_space_avail(descriptor);
999         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::peer_handler::PeerHandleError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1000         local_ret
1001 }
1002
1003 /// Indicates that data was read from the given socket descriptor.
1004 ///
1005 /// May return an Err to indicate that the connection should be closed.
1006 ///
1007 /// Will *not* call back into [`send_data`] on any descriptors to avoid reentrancy complexity.
1008 /// Thus, however, you should call [`process_events`] after any `read_event` to generate
1009 /// [`send_data`] calls to handle responses.
1010 ///
1011 /// If `Ok(true)` is returned, further read_events should not be triggered until a
1012 /// [`send_data`] call on this descriptor has `resume_read` set (preventing DoS issues in the
1013 /// send buffer).
1014 ///
1015 /// [`send_data`]: SocketDescriptor::send_data
1016 /// [`process_events`]: PeerManager::process_events
1017 #[must_use]
1018 #[no_mangle]
1019 pub extern "C" fn PeerManager_read_event(this_arg: &PeerManager, peer_descriptor: &mut crate::lightning::ln::peer_handler::SocketDescriptor, mut data: crate::c_types::u8slice) -> crate::c_types::derived::CResult_boolPeerHandleErrorZ {
1020         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.read_event(peer_descriptor, data.to_slice());
1021         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { o }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::peer_handler::PeerHandleError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1022         local_ret
1023 }
1024
1025 /// Checks for any events generated by our handlers and processes them. Includes sending most
1026 /// response messages as well as messages generated by calls to handler functions directly (eg
1027 /// functions like [`ChannelManager::process_pending_htlc_forwards`] or [`send_payment`]).
1028 ///
1029 /// May call [`send_data`] on [`SocketDescriptor`]s. Thus, be very careful with reentrancy
1030 /// issues!
1031 ///
1032 /// You don't have to call this function explicitly if you are using [`lightning-net-tokio`]
1033 /// or one of the other clients provided in our language bindings.
1034 ///
1035 /// [`send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
1036 /// [`ChannelManager::process_pending_htlc_forwards`]: crate::ln::channelmanager::ChannelManager::process_pending_htlc_forwards
1037 /// [`send_data`]: SocketDescriptor::send_data
1038 #[no_mangle]
1039 pub extern "C" fn PeerManager_process_events(this_arg: &PeerManager) {
1040         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.process_events()
1041 }
1042
1043 /// Indicates that the given socket descriptor's connection is now closed.
1044 #[no_mangle]
1045 pub extern "C" fn PeerManager_socket_disconnected(this_arg: &PeerManager, descriptor: &crate::lightning::ln::peer_handler::SocketDescriptor) {
1046         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.socket_disconnected(descriptor)
1047 }
1048
1049 /// Disconnect a peer given its node id.
1050 ///
1051 /// Set `no_connection_possible` to true to prevent any further connection with this peer,
1052 /// force-closing any channels we have with it.
1053 ///
1054 /// If a peer is connected, this will call [`disconnect_socket`] on the descriptor for the
1055 /// peer. Thus, be very careful about reentrancy issues.
1056 ///
1057 /// [`disconnect_socket`]: SocketDescriptor::disconnect_socket
1058 #[no_mangle]
1059 pub extern "C" fn PeerManager_disconnect_by_node_id(this_arg: &PeerManager, mut node_id: crate::c_types::PublicKey, mut no_connection_possible: bool) {
1060         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.disconnect_by_node_id(node_id.into_rust(), no_connection_possible)
1061 }
1062
1063 /// Disconnects all currently-connected peers. This is useful on platforms where there may be
1064 /// an indication that TCP sockets have stalled even if we weren't around to time them out
1065 /// using regular ping/pongs.
1066 #[no_mangle]
1067 pub extern "C" fn PeerManager_disconnect_all_peers(this_arg: &PeerManager) {
1068         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.disconnect_all_peers()
1069 }
1070
1071 /// Send pings to each peer and disconnect those which did not respond to the last round of
1072 /// pings.
1073 ///
1074 /// This may be called on any timescale you want, however, roughly once every five to ten
1075 /// seconds is preferred. The call rate determines both how often we send a ping to our peers
1076 /// and how much time they have to respond before we disconnect them.
1077 ///
1078 /// May call [`send_data`] on all [`SocketDescriptor`]s. Thus, be very careful with reentrancy
1079 /// issues!
1080 ///
1081 /// [`send_data`]: SocketDescriptor::send_data
1082 #[no_mangle]
1083 pub extern "C" fn PeerManager_timer_tick_occurred(this_arg: &PeerManager) {
1084         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.timer_tick_occurred()
1085 }
1086