X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FPeerHandleError.java;h=edaf48a184c14426ff5824dbd4eb8e99aa1ce4cf;hb=239d70ea23fdf148440dfedf9479944dc0fbf394;hp=391cb4705693cd35b00ddb7eee7941d925a7da3b;hpb=3d559f3266fde7c6a21248c10d9a7145125b5e69;p=ldk-java diff --git a/src/main/java/org/ldk/structs/PeerHandleError.java b/src/main/java/org/ldk/structs/PeerHandleError.java index 391cb470..edaf48a1 100644 --- a/src/main/java/org/ldk/structs/PeerHandleError.java +++ b/src/main/java/org/ldk/structs/PeerHandleError.java @@ -2,27 +2,53 @@ package org.ldk.structs; 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; + +/** + * Error for PeerManager errors. If you get one of these, you must disconnect the socket and + * generate no further read_event/write_buffer_space_avail/socket_disconnected calls for the + * descriptor. + */ +@SuppressWarnings("unchecked") // We correctly assign various generic arrays public class PeerHandleError extends CommonBase { PeerHandleError(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { - bindings.PeerHandleError_free(ptr); super.finalize(); + super.finalize(); + if (ptr != 0) { bindings.PeerHandleError_free(ptr); } } - public boolean get_no_connection_possible(PeerHandleError this_ptr) { - boolean ret = bindings.PeerHandleError_get_no_connection_possible(this_ptr.ptr & ~1); - this.ptrs_to.add(this_ptr); - return ret; + /** + * Constructs a new PeerHandleError given each field + */ + public static PeerHandleError of() { + long ret = bindings.PeerHandleError_new(); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.PeerHandleError ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.PeerHandleError(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); }; + return ret_hu_conv; } - public void set_no_connection_possible(PeerHandleError this_ptr, boolean val) { - bindings.PeerHandleError_set_no_connection_possible(this_ptr.ptr & ~1, val); - this.ptrs_to.add(this_ptr); + long clone_ptr() { + long ret = bindings.PeerHandleError_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; } - public PeerHandleError(boolean no_connection_possible_arg) { - super(bindings.PeerHandleError_new(no_connection_possible_arg)); + /** + * Creates a copy of the PeerHandleError + */ + public PeerHandleError clone() { + long ret = bindings.PeerHandleError_clone(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.PeerHandleError ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.PeerHandleError(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; } }