X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FNodeInfo.cs;h=e7975e61df6602ce6908c99fb918f3b373a25f8c;hb=152d721883552dd92925833d15687d7d64d01c35;hp=542ba8c14bdef0eefc57ff061a961bd7dca5c32b;hpb=7811d2191440c55034e1abfbf3be442d4b25481b;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/NodeInfo.cs b/c_sharp/src/org/ldk/structs/NodeInfo.cs index 542ba8c1..e7975e61 100644 --- a/c_sharp/src/org/ldk/structs/NodeInfo.cs +++ b/c_sharp/src/org/ldk/structs/NodeInfo.cs @@ -21,16 +21,18 @@ public class NodeInfo : CommonBase { * Returns a copy of the field. */ public long[] get_channels() { - long[] ret = bindings.NodeInfo_get_channels(this.ptr); + long ret = bindings.NodeInfo_get_channels(this.ptr); GC.KeepAlive(this); - return ret; + if (ret >= 0 && ret <= 4096) { return null; } + long[] ret_conv = InternalUtils.decodeUint64Array(ret); + return ret_conv; } /** * All valid channels a node has announced */ public void set_channels(long[] val) { - bindings.NodeInfo_set_channels(this.ptr, val); + bindings.NodeInfo_set_channels(this.ptr, InternalUtils.encodeUint64Array(val)); GC.KeepAlive(this); GC.KeepAlive(val); } @@ -67,9 +69,11 @@ public class NodeInfo : CommonBase { /** * Constructs a new NodeInfo given each field + * + * Note that announcement_info_arg (or a relevant inner pointer) may be NULL or all-0s to represent None */ public static NodeInfo of(long[] channels_arg, org.ldk.structs.NodeAnnouncementInfo announcement_info_arg) { - long ret = bindings.NodeInfo_new(channels_arg, announcement_info_arg == null ? 0 : announcement_info_arg.ptr); + long ret = bindings.NodeInfo_new(InternalUtils.encodeUint64Array(channels_arg), announcement_info_arg == null ? 0 : announcement_info_arg.ptr); GC.KeepAlive(channels_arg); GC.KeepAlive(announcement_info_arg); if (ret >= 0 && ret <= 4096) { return null; } @@ -103,7 +107,7 @@ public class NodeInfo : CommonBase { * Two objects with NULL inner values will be considered "equal" here. */ public bool eq(org.ldk.structs.NodeInfo b) { - bool ret = bindings.NodeInfo_eq(this.ptr, b == null ? 0 : b.ptr); + bool ret = bindings.NodeInfo_eq(this.ptr, b.ptr); GC.KeepAlive(this); GC.KeepAlive(b); if (this != null) { this.ptrs_to.AddLast(b); }; @@ -114,20 +118,42 @@ public class NodeInfo : CommonBase { if (!(o is NodeInfo)) return false; return this.eq((NodeInfo)o); } + /** + * Returns whether the node has only announced Tor addresses. + */ + public bool is_tor_only() { + bool ret = bindings.NodeInfo_is_tor_only(this.ptr); + GC.KeepAlive(this); + return ret; + } + + /** + * Get the string representation of a NodeInfo object + */ + public string to_str() { + long ret = bindings.NodeInfo_to_str(this.ptr); + GC.KeepAlive(this); + if (ret >= 0 && ret <= 4096) { return null; } + string ret_conv = InternalUtils.decodeString(ret); + return ret_conv; + } + /** * Serialize the NodeInfo object into a byte array which can be read by NodeInfo_read */ public byte[] write() { - byte[] ret = bindings.NodeInfo_write(this.ptr); + long ret = bindings.NodeInfo_write(this.ptr); GC.KeepAlive(this); - return ret; + if (ret >= 0 && ret <= 4096) { return null; } + byte[] ret_conv = InternalUtils.decodeUint8Array(ret); + return ret_conv; } /** * Read a NodeInfo from a byte array, created by NodeInfo_write */ public static Result_NodeInfoDecodeErrorZ read(byte[] ser) { - long ret = bindings.NodeInfo_read(ser); + long ret = bindings.NodeInfo_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_NodeInfoDecodeErrorZ ret_hu_conv = Result_NodeInfoDecodeErrorZ.constr_from_ptr(ret);