X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelReestablish.java;h=47f3822654bc803a7cb2573aea4f694c19c7cff4;hb=1854b5cebef22ace9e9e4dd191f609818df9ce08;hp=be92848979f01fec03e5fdc823ed89346133279b;hpb=9e8763c71cd61d55be7c869d973524f75209a3f3;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelReestablish.java b/src/main/java/org/ldk/structs/ChannelReestablish.java index be928489..47f38226 100644 --- a/src/main/java/org/ldk/structs/ChannelReestablish.java +++ b/src/main/java/org/ldk/structs/ChannelReestablish.java @@ -4,7 +4,13 @@ import org.ldk.impl.bindings; import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; +import java.lang.ref.Reference; +import javax.annotation.Nullable; + +/** + * A channel_reestablish message to be sent or received from a peer + */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class ChannelReestablish extends CommonBase { ChannelReestablish(Object _dummy, long ptr) { super(ptr); } @@ -14,47 +20,94 @@ public class ChannelReestablish extends CommonBase { if (ptr != 0) { bindings.ChannelReestablish_free(ptr); } } + /** + * The channel ID + */ public byte[] get_channel_id() { byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr); + Reference.reachabilityFence(this); return ret; } + /** + * The channel ID + */ public void set_channel_id(byte[] val) { - bindings.ChannelReestablish_set_channel_id(this.ptr, val); + bindings.ChannelReestablish_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32)); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } + /** + * The next commitment number for the sender + */ public long get_next_local_commitment_number() { long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr); + Reference.reachabilityFence(this); return ret; } + /** + * The next commitment number for the sender + */ public void set_next_local_commitment_number(long val) { bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, val); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } + /** + * The next commitment number for the recipient + */ public long get_next_remote_commitment_number() { long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr); + Reference.reachabilityFence(this); return ret; } + /** + * The next commitment number for the recipient + */ public void set_next_remote_commitment_number(long val) { bindings.ChannelReestablish_set_next_remote_commitment_number(this.ptr, val); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + long clone_ptr() { + long ret = bindings.ChannelReestablish_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; } + /** + * Creates a copy of the ChannelReestablish + */ public ChannelReestablish clone() { long ret = bindings.ChannelReestablish_clone(this.ptr); - ChannelReestablish ret_hu_conv = new ChannelReestablish(null, ret); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + ChannelReestablish ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ChannelReestablish(null, ret); } ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } + /** + * 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); + Reference.reachabilityFence(this); return ret; } - public static Result_ChannelReestablishDecodeErrorZ constructor_read(byte[] ser) { + /** + * Read a ChannelReestablish from a byte array, created by ChannelReestablish_write + */ + public static Result_ChannelReestablishDecodeErrorZ read(byte[] ser) { long ret = bindings.ChannelReestablish_read(ser); + Reference.reachabilityFence(ser); + if (ret >= 0 && ret <= 4096) { return null; } Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }