[C#] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
[ldk-java] / c_sharp / src / org / ldk / structs / NodeInfo.cs
index 542ba8c14bdef0eefc57ff061a961bd7dca5c32b..e7975e61df6602ce6908c99fb918f3b373a25f8c 100644 (file)
@@ -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);