[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / ChannelReestablish.cs
index fa11efab69d9446d781bf96389a7a26acf74fd74..b070cceb1eff6e306e6d8be49d2ae48435fa2343 100644 (file)
@@ -7,7 +7,9 @@ namespace org { namespace ldk { namespace structs {
 
 
 /**
- * A channel_reestablish message to be sent or received from a peer
+ * A [`channel_reestablish`] message to be sent to or received from a peer.
+ * 
+ * [`channel_reestablish`]: https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#message-retransmission
  */
 public class ChannelReestablish : CommonBase {
        internal ChannelReestablish(object _dummy, long ptr) : base(ptr) { }
@@ -19,16 +21,18 @@ public class ChannelReestablish : CommonBase {
         * The channel ID
         */
        public byte[] get_channel_id() {
-               byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
+               long ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * The channel ID
         */
        public void set_channel_id(byte[] val) {
-               bindings.ChannelReestablish_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.ChannelReestablish_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -69,6 +73,88 @@ public class ChannelReestablish : CommonBase {
                GC.KeepAlive(val);
        }
 
+       /**
+        * Proof that the sender knows the per-commitment secret of a specific commitment transaction
+        * belonging to the recipient
+        */
+       public byte[] get_your_last_per_commitment_secret() {
+               long ret = bindings.ChannelReestablish_get_your_last_per_commitment_secret(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
+       }
+
+       /**
+        * Proof that the sender knows the per-commitment secret of a specific commitment transaction
+        * belonging to the recipient
+        */
+       public void set_your_last_per_commitment_secret(byte[] val) {
+               bindings.ChannelReestablish_set_your_last_per_commitment_secret(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
+               GC.KeepAlive(this);
+               GC.KeepAlive(val);
+       }
+
+       /**
+        * The sender's per-commitment point for their current commitment transaction
+        */
+       public byte[] get_my_current_per_commitment_point() {
+               long ret = bindings.ChannelReestablish_get_my_current_per_commitment_point(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
+       }
+
+       /**
+        * The sender's per-commitment point for their current commitment transaction
+        */
+       public void set_my_current_per_commitment_point(byte[] val) {
+               bindings.ChannelReestablish_set_my_current_per_commitment_point(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 33)));
+               GC.KeepAlive(this);
+               GC.KeepAlive(val);
+       }
+
+       /**
+        * The next funding transaction ID
+        */
+       public Option_ThirtyTwoBytesZ get_next_funding_txid() {
+               long ret = bindings.ChannelReestablish_get_next_funding_txid(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.Option_ThirtyTwoBytesZ ret_hu_conv = org.ldk.structs.Option_ThirtyTwoBytesZ.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * The next funding transaction ID
+        */
+       public void set_next_funding_txid(org.ldk.structs.Option_ThirtyTwoBytesZ val) {
+               bindings.ChannelReestablish_set_next_funding_txid(this.ptr, val.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(val);
+               if (this != null) { this.ptrs_to.AddLast(val); };
+       }
+
+       /**
+        * Constructs a new ChannelReestablish given each field
+        */
+       public static ChannelReestablish of(byte[] channel_id_arg, long next_local_commitment_number_arg, long next_remote_commitment_number_arg, byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg, org.ldk.structs.Option_ThirtyTwoBytesZ next_funding_txid_arg) {
+               long ret = bindings.ChannelReestablish_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32)), next_local_commitment_number_arg, next_remote_commitment_number_arg, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(your_last_per_commitment_secret_arg, 32)), InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(my_current_per_commitment_point_arg, 33)), next_funding_txid_arg.ptr);
+               GC.KeepAlive(channel_id_arg);
+               GC.KeepAlive(next_local_commitment_number_arg);
+               GC.KeepAlive(next_remote_commitment_number_arg);
+               GC.KeepAlive(your_last_per_commitment_secret_arg);
+               GC.KeepAlive(my_current_per_commitment_point_arg);
+               GC.KeepAlive(next_funding_txid_arg);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.ChannelReestablish ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelReestablish(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(next_funding_txid_arg); };
+               return ret_hu_conv;
+       }
+
        internal long clone_ptr() {
                long ret = bindings.ChannelReestablish_clone_ptr(this.ptr);
                GC.KeepAlive(this);
@@ -108,16 +194,18 @@ public class ChannelReestablish : CommonBase {
         * Serialize the ChannelReestablish object into a byte array which can be read by ChannelReestablish_read
         */
        public byte[] write() {
-               byte[] ret = bindings.ChannelReestablish_write(this.ptr);
+               long ret = bindings.ChannelReestablish_write(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * Read a ChannelReestablish from a byte array, created by ChannelReestablish_write
         */
        public static Result_ChannelReestablishDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.ChannelReestablish_read(ser);
+               long ret = bindings.ChannelReestablish_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret);