X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FPeerHandleError.java;h=b1d20445e3c1a6eac89109515263830dd2994a7e;hb=5d91c4ade4b5f736d100428ccf84709ad29f971d;hp=793d3ff374150754e035e19c2f309dfbcd6a07db;hpb=47341beaeecf907f422f126500baf586d54a0d41;p=ldk-java diff --git a/src/main/java/org/ldk/structs/PeerHandleError.java b/src/main/java/org/ldk/structs/PeerHandleError.java index 793d3ff3..b1d20445 100644 --- a/src/main/java/org/ldk/structs/PeerHandleError.java +++ b/src/main/java/org/ldk/structs/PeerHandleError.java @@ -22,45 +22,14 @@ public class PeerHandleError extends CommonBase { if (ptr != 0) { bindings.PeerHandleError_free(ptr); } } - /** - * Used to indicate that we probably can't make any future connections to this peer (e.g. - * because we required features that our peer was missing, or vice versa). - * - * While LDK's [`ChannelManager`] will not do it automatically, you likely wish to force-close - * any channels with this peer or check for new versions of LDK. - * - * [`ChannelManager`]: crate::ln::channelmanager::ChannelManager - */ - public boolean get_no_connection_possible() { - boolean ret = bindings.PeerHandleError_get_no_connection_possible(this.ptr); - Reference.reachabilityFence(this); - return ret; - } - - /** - * Used to indicate that we probably can't make any future connections to this peer (e.g. - * because we required features that our peer was missing, or vice versa). - * - * While LDK's [`ChannelManager`] will not do it automatically, you likely wish to force-close - * any channels with this peer or check for new versions of LDK. - * - * [`ChannelManager`]: crate::ln::channelmanager::ChannelManager - */ - public void set_no_connection_possible(boolean val) { - bindings.PeerHandleError_set_no_connection_possible(this.ptr, val); - Reference.reachabilityFence(this); - Reference.reachabilityFence(val); - } - /** * Constructs a new PeerHandleError given each field */ - public static PeerHandleError of(boolean no_connection_possible_arg) { - long ret = bindings.PeerHandleError_new(no_connection_possible_arg); - Reference.reachabilityFence(no_connection_possible_arg); + 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); } - ret_hu_conv.ptrs_to.add(ret_hu_conv); + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); }; return ret_hu_conv; } @@ -78,8 +47,17 @@ public class PeerHandleError extends CommonBase { 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); } - ret_hu_conv.ptrs_to.add(this); + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; return ret_hu_conv; } + /** + * Get the string representation of a PeerHandleError object + */ + public String to_str() { + String ret = bindings.PeerHandleError_to_str(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + }