Update bindings to latest upstream.
[ldk-java] / src / main / java / org / ldk / structs / ChannelMessageHandler.java
index d286901e7fb8399994beab0349b38468044a4fbc..2b9aebe4680264b50744ed174afee298448ee6a4 100644 (file)
@@ -26,7 +26,7 @@ public class ChannelMessageHandler extends CommonBase {
                void handle_funding_created(byte[] their_node_id, FundingCreated msg);
                void handle_funding_signed(byte[] their_node_id, FundingSigned msg);
                void handle_funding_locked(byte[] their_node_id, FundingLocked msg);
-               void handle_shutdown(byte[] their_node_id, Shutdown msg);
+               void handle_shutdown(byte[] their_node_id, InitFeatures their_features, Shutdown msg);
                void handle_closing_signed(byte[] their_node_id, ClosingSigned msg);
                void handle_update_add_htlc(byte[] their_node_id, UpdateAddHTLC msg);
                void handle_update_fulfill_htlc(byte[] their_node_id, UpdateFulfillHTLC msg);
@@ -47,11 +47,13 @@ public class ChannelMessageHandler extends CommonBase {
                impl_holder.held = new ChannelMessageHandler(new bindings.LDKChannelMessageHandler() {
                        @Override public void handle_open_channel(byte[] their_node_id, long their_features, long msg) {
                                InitFeatures their_features_hu_conv = new InitFeatures(null, their_features);
+                               their_features_hu_conv.ptrs_to.add(this);
                                OpenChannel msg_hu_conv = new OpenChannel(null, msg);
                                arg.handle_open_channel(their_node_id, their_features_hu_conv, msg_hu_conv);
                        }
                        @Override public void handle_accept_channel(byte[] their_node_id, long their_features, long msg) {
                                InitFeatures their_features_hu_conv = new InitFeatures(null, their_features);
+                               their_features_hu_conv.ptrs_to.add(this);
                                AcceptChannel msg_hu_conv = new AcceptChannel(null, msg);
                                arg.handle_accept_channel(their_node_id, their_features_hu_conv, msg_hu_conv);
                        }
@@ -67,9 +69,10 @@ public class ChannelMessageHandler extends CommonBase {
                                FundingLocked msg_hu_conv = new FundingLocked(null, msg);
                                arg.handle_funding_locked(their_node_id, msg_hu_conv);
                        }
-                       @Override public void handle_shutdown(byte[] their_node_id, long msg) {
+                       @Override public void handle_shutdown(byte[] their_node_id, long their_features, long msg) {
+                               InitFeatures their_features_hu_conv = new InitFeatures(null, their_features);
                                Shutdown msg_hu_conv = new Shutdown(null, msg);
-                               arg.handle_shutdown(their_node_id, msg_hu_conv);
+                               arg.handle_shutdown(their_node_id, their_features_hu_conv, msg_hu_conv);
                        }
                        @Override public void handle_closing_signed(byte[] their_node_id, long msg) {
                                ClosingSigned msg_hu_conv = new ClosingSigned(null, msg);
@@ -125,8 +128,18 @@ public class ChannelMessageHandler extends CommonBase {
                }, MessageSendEventsProvider.new_impl(MessageSendEventsProvider_impl).bindings_instance);
                return impl_holder.held;
        }
-       // Skipped ChannelMessageHandler_handle_open_channel
-       // Skipped ChannelMessageHandler_handle_accept_channel
+       public void handle_open_channel(byte[] their_node_id, InitFeatures their_features, OpenChannel msg) {
+               bindings.ChannelMessageHandler_handle_open_channel(this.ptr, their_node_id, their_features == null ? 0 : their_features.ptr & ~1, msg == null ? 0 : msg.ptr & ~1);
+               this.ptrs_to.add(their_features);
+               this.ptrs_to.add(msg);
+       }
+
+       public void handle_accept_channel(byte[] their_node_id, InitFeatures their_features, AcceptChannel msg) {
+               bindings.ChannelMessageHandler_handle_accept_channel(this.ptr, their_node_id, their_features == null ? 0 : their_features.ptr & ~1, msg == null ? 0 : msg.ptr & ~1);
+               this.ptrs_to.add(their_features);
+               this.ptrs_to.add(msg);
+       }
+
        public void handle_funding_created(byte[] their_node_id, FundingCreated msg) {
                bindings.ChannelMessageHandler_handle_funding_created(this.ptr, their_node_id, msg == null ? 0 : msg.ptr & ~1);
                this.ptrs_to.add(msg);
@@ -142,8 +155,9 @@ public class ChannelMessageHandler extends CommonBase {
                this.ptrs_to.add(msg);
        }
 
-       public void handle_shutdown(byte[] their_node_id, Shutdown msg) {
-               bindings.ChannelMessageHandler_handle_shutdown(this.ptr, their_node_id, msg == null ? 0 : msg.ptr & ~1);
+       public void handle_shutdown(byte[] their_node_id, InitFeatures their_features, Shutdown msg) {
+               bindings.ChannelMessageHandler_handle_shutdown(this.ptr, their_node_id, their_features == null ? 0 : their_features.ptr & ~1, msg == null ? 0 : msg.ptr & ~1);
+               this.ptrs_to.add(their_features);
                this.ptrs_to.add(msg);
        }