using org.ldk.impl; using org.ldk.enums; using org.ldk.util; using System; namespace org { namespace ldk { namespace structs { /** * The unsigned part of a [`node_announcement`] message. * * [`node_announcement`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#the-node_announcement-message */ public class UnsignedNodeAnnouncement : CommonBase { internal UnsignedNodeAnnouncement(object _dummy, long ptr) : base(ptr) { } ~UnsignedNodeAnnouncement() { if (ptr != 0) { bindings.UnsignedNodeAnnouncement_free(ptr); } } /** * The advertised features */ public NodeFeatures get_features() { long ret = bindings.UnsignedNodeAnnouncement_get_features(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } org.ldk.structs.NodeFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.NodeFeatures(null, ret); } if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); }; return ret_hu_conv; } /** * The advertised features */ public void set_features(org.ldk.structs.NodeFeatures val) { bindings.UnsignedNodeAnnouncement_set_features(this.ptr, val == null ? 0 : val.ptr); GC.KeepAlive(this); GC.KeepAlive(val); if (this != null) { this.ptrs_to.AddLast(val); }; } /** * A strictly monotonic announcement counter, with gaps allowed */ public int get_timestamp() { int ret = bindings.UnsignedNodeAnnouncement_get_timestamp(this.ptr); GC.KeepAlive(this); return ret; } /** * A strictly monotonic announcement counter, with gaps allowed */ public void set_timestamp(int val) { bindings.UnsignedNodeAnnouncement_set_timestamp(this.ptr, val); GC.KeepAlive(this); GC.KeepAlive(val); } /** * The `node_id` this announcement originated from (don't rebroadcast the `node_announcement` back * to this node). */ public NodeId get_node_id() { long ret = bindings.UnsignedNodeAnnouncement_get_node_id(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } org.ldk.structs.NodeId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.NodeId(null, ret); } if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); }; return ret_hu_conv; } /** * The `node_id` this announcement originated from (don't rebroadcast the `node_announcement` back * to this node). */ public void set_node_id(org.ldk.structs.NodeId val) { bindings.UnsignedNodeAnnouncement_set_node_id(this.ptr, val == null ? 0 : val.ptr); GC.KeepAlive(this); GC.KeepAlive(val); if (this != null) { this.ptrs_to.AddLast(val); }; } /** * An RGB color for UI purposes */ public byte[] get_rgb() { long ret = bindings.UnsignedNodeAnnouncement_get_rgb(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } byte[] ret_conv = InternalUtils.decodeUint8Array(ret); return ret_conv; } /** * An RGB color for UI purposes */ public void set_rgb(byte[] val) { bindings.UnsignedNodeAnnouncement_set_rgb(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 3))); GC.KeepAlive(this); GC.KeepAlive(val); } /** * An alias, for UI purposes. * * This should be sanitized before use. There is no guarantee of uniqueness. */ public NodeAlias get_alias() { long ret = bindings.UnsignedNodeAnnouncement_get_alias(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } org.ldk.structs.NodeAlias ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.NodeAlias(null, ret); } if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); }; return ret_hu_conv; } /** * An alias, for UI purposes. * * This should be sanitized before use. There is no guarantee of uniqueness. */ public void set_alias(org.ldk.structs.NodeAlias val) { bindings.UnsignedNodeAnnouncement_set_alias(this.ptr, val == null ? 0 : val.ptr); GC.KeepAlive(this); GC.KeepAlive(val); if (this != null) { this.ptrs_to.AddLast(val); }; } /** * List of addresses on which this node is reachable * * Returns a copy of the field. */ public SocketAddress[] get_addresses() { long ret = bindings.UnsignedNodeAnnouncement_get_addresses(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } int ret_conv_15_len = InternalUtils.getArrayLength(ret); SocketAddress[] ret_conv_15_arr = new SocketAddress[ret_conv_15_len]; for (int p = 0; p < ret_conv_15_len; p++) { long ret_conv_15 = InternalUtils.getU64ArrayElem(ret, p); org.ldk.structs.SocketAddress ret_conv_15_hu_conv = org.ldk.structs.SocketAddress.constr_from_ptr(ret_conv_15); if (ret_conv_15_hu_conv != null) { ret_conv_15_hu_conv.ptrs_to.AddLast(this); }; ret_conv_15_arr[p] = ret_conv_15_hu_conv; } bindings.free_buffer(ret); return ret_conv_15_arr; } /** * List of addresses on which this node is reachable */ public void set_addresses(SocketAddress[] val) { bindings.UnsignedNodeAnnouncement_set_addresses(this.ptr, InternalUtils.encodeUint64Array(InternalUtils.mapArray(val, val_conv_15 => val_conv_15.ptr))); GC.KeepAlive(this); GC.KeepAlive(val); foreach (SocketAddress val_conv_15 in val) { if (this != null) { this.ptrs_to.AddLast(val_conv_15); }; }; } internal long clone_ptr() { long ret = bindings.UnsignedNodeAnnouncement_clone_ptr(this.ptr); GC.KeepAlive(this); return ret; } /** * Creates a copy of the UnsignedNodeAnnouncement */ public UnsignedNodeAnnouncement clone() { long ret = bindings.UnsignedNodeAnnouncement_clone(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } org.ldk.structs.UnsignedNodeAnnouncement ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.UnsignedNodeAnnouncement(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 UnsignedNodeAnnouncement. */ public long hash() { long ret = bindings.UnsignedNodeAnnouncement_hash(this.ptr); GC.KeepAlive(this); return ret; } public override int GetHashCode() { return (int)this.hash(); } /** * Checks if two UnsignedNodeAnnouncements 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.UnsignedNodeAnnouncement b) { bool ret = bindings.UnsignedNodeAnnouncement_eq(this.ptr, b == null ? 0 : 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 UnsignedNodeAnnouncement)) return false; return this.eq((UnsignedNodeAnnouncement)o); } /** * Serialize the UnsignedNodeAnnouncement object into a byte array which can be read by UnsignedNodeAnnouncement_read */ public byte[] write() { long ret = bindings.UnsignedNodeAnnouncement_write(this.ptr); GC.KeepAlive(this); if (ret >= 0 && ret <= 4096) { return null; } byte[] ret_conv = InternalUtils.decodeUint8Array(ret); return ret_conv; } /** * Read a UnsignedNodeAnnouncement from a byte array, created by UnsignedNodeAnnouncement_write */ public static Result_UnsignedNodeAnnouncementDecodeErrorZ read(byte[] ser) { long ret = bindings.UnsignedNodeAnnouncement_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_UnsignedNodeAnnouncementDecodeErrorZ ret_hu_conv = Result_UnsignedNodeAnnouncementDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; } } } } }