using org.ldk.impl; using org.ldk.enums; using org.ldk.util; using System; namespace org { namespace ldk { namespace structs { /** * An accept_channel2 message to be sent by or received from the channel accepter. * * Used in V2 channel establishment */ public class AcceptChannelV2 : CommonBase { internal AcceptChannelV2(object _dummy, long ptr) : base(ptr) { } ~AcceptChannelV2() { if (ptr != 0) { bindings.AcceptChannelV2_free(ptr); } } /** * Common fields of `accept_channel(2)`-like messages */ public CommonAcceptChannelFields get_common_fields() { long ret = bindings.AcceptChannelV2_get_common_fields(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } org.ldk.structs.CommonAcceptChannelFields ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.CommonAcceptChannelFields(null, ret); } if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); }; return ret_hu_conv; } /** * Common fields of `accept_channel(2)`-like messages */ public void set_common_fields(org.ldk.structs.CommonAcceptChannelFields val) { bindings.AcceptChannelV2_set_common_fields(this.ptr, val.ptr); GC.KeepAlive(this); GC.KeepAlive(val); if (this != null) { this.ptrs_to.AddLast(val); }; } /** * Part of the channel value contributed by the channel acceptor */ public long get_funding_satoshis() { long ret = bindings.AcceptChannelV2_get_funding_satoshis(this.ptr); GC.KeepAlive(this); return ret; } /** * Part of the channel value contributed by the channel acceptor */ public void set_funding_satoshis(long val) { bindings.AcceptChannelV2_set_funding_satoshis(this.ptr, val); GC.KeepAlive(this); GC.KeepAlive(val); } /** * The second to-be-broadcast-by-channel-acceptor transaction's per commitment point */ public byte[] get_second_per_commitment_point() { long ret = bindings.AcceptChannelV2_get_second_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 second to-be-broadcast-by-channel-acceptor transaction's per commitment point */ public void set_second_per_commitment_point(byte[] val) { bindings.AcceptChannelV2_set_second_per_commitment_point(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 33))); GC.KeepAlive(this); GC.KeepAlive(val); } /** * Optionally, a requirement that only confirmed inputs can be added */ public COption_NoneZ get_require_confirmed_inputs() { COption_NoneZ ret = bindings.AcceptChannelV2_get_require_confirmed_inputs(this.ptr); GC.KeepAlive(this); return ret; } /** * Optionally, a requirement that only confirmed inputs can be added */ public void set_require_confirmed_inputs(COption_NoneZ val) { bindings.AcceptChannelV2_set_require_confirmed_inputs(this.ptr, val); GC.KeepAlive(this); GC.KeepAlive(val); } /** * Constructs a new AcceptChannelV2 given each field */ public static AcceptChannelV2 of(org.ldk.structs.CommonAcceptChannelFields common_fields_arg, long funding_satoshis_arg, byte[] second_per_commitment_point_arg, COption_NoneZ require_confirmed_inputs_arg) { long ret = bindings.AcceptChannelV2_new(common_fields_arg.ptr, funding_satoshis_arg, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(second_per_commitment_point_arg, 33)), require_confirmed_inputs_arg); GC.KeepAlive(common_fields_arg); GC.KeepAlive(funding_satoshis_arg); GC.KeepAlive(second_per_commitment_point_arg); GC.KeepAlive(require_confirmed_inputs_arg); if (ret >= 0 && ret <= 4096) { return null; } org.ldk.structs.AcceptChannelV2 ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.AcceptChannelV2(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(common_fields_arg); }; return ret_hu_conv; } internal long clone_ptr() { long ret = bindings.AcceptChannelV2_clone_ptr(this.ptr); GC.KeepAlive(this); return ret; } /** * Creates a copy of the AcceptChannelV2 */ public AcceptChannelV2 clone() { long ret = bindings.AcceptChannelV2_clone(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } org.ldk.structs.AcceptChannelV2 ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.AcceptChannelV2(null, ret); } if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); }; return ret_hu_conv; } /** * Generates a non-cryptographic 64-bit hash of the AcceptChannelV2. */ public long hash() { long ret = bindings.AcceptChannelV2_hash(this.ptr); GC.KeepAlive(this); return ret; } public override int GetHashCode() { return (int)this.hash(); } /** * Checks if two AcceptChannelV2s contain equal inner contents. * This ignores pointers and is_owned flags and looks at the values in fields. * Two objects with NULL inner values will be considered "equal" here. */ public bool eq(org.ldk.structs.AcceptChannelV2 b) { bool ret = bindings.AcceptChannelV2_eq(this.ptr, b.ptr); GC.KeepAlive(this); GC.KeepAlive(b); if (this != null) { this.ptrs_to.AddLast(b); }; return ret; } public override bool Equals(object o) { if (!(o is AcceptChannelV2)) return false; return this.eq((AcceptChannelV2)o); } /** * Serialize the AcceptChannelV2 object into a byte array which can be read by AcceptChannelV2_read */ public byte[] write() { long ret = bindings.AcceptChannelV2_write(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } byte[] ret_conv = InternalUtils.decodeUint8Array(ret); return ret_conv; } /** * Read a AcceptChannelV2 from a byte array, created by AcceptChannelV2_write */ public static Result_AcceptChannelV2DecodeErrorZ read(byte[] ser) { long ret = bindings.AcceptChannelV2_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_AcceptChannelV2DecodeErrorZ ret_hu_conv = Result_AcceptChannelV2DecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; } } } } }