[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / ErrorMessage.cs
index dc9b2d9cd4e63c5936be92f1bb04029004587207..9a4135a76e6057dd4384925ddb3df81fcc6090ef 100644 (file)
@@ -7,7 +7,9 @@ namespace org { namespace ldk { namespace structs {
 
 
 /**
- * An error message to be sent or received from a peer
+ * An [`error`] message to be sent to or received from a peer.
+ * 
+ * [`error`]: https://github.com/lightning/bolts/blob/master/01-messaging.md#the-error-and-warning-messages
  */
 public class ErrorMessage : CommonBase {
        internal ErrorMessage(object _dummy, long ptr) : base(ptr) { }
@@ -22,9 +24,11 @@ public class ErrorMessage : CommonBase {
         * with the sending peer should be closed.
         */
        public byte[] get_channel_id() {
-               byte[] ret = bindings.ErrorMessage_get_channel_id(this.ptr);
+               long ret = bindings.ErrorMessage_get_channel_id(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
@@ -34,31 +38,35 @@ public class ErrorMessage : CommonBase {
         * with the sending peer should be closed.
         */
        public void set_channel_id(byte[] val) {
-               bindings.ErrorMessage_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.ErrorMessage_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
 
        /**
         * A possibly human-readable error description.
-        * The string should be sanitized before it is used (e.g. emitted to logs or printed to
-        * stdout). Otherwise, a well crafted error message may trigger a security vulnerability in
+        * 
+        * The string should be sanitized before it is used (e.g., emitted to logs or printed to
+        * `stdout`). Otherwise, a well crafted error message may trigger a security vulnerability in
         * the terminal emulator or the logging subsystem.
         */
        public string get_data() {
-               string ret = bindings.ErrorMessage_get_data(this.ptr);
+               long ret = bindings.ErrorMessage_get_data(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               string ret_conv = InternalUtils.decodeString(ret);
+               return ret_conv;
        }
 
        /**
         * A possibly human-readable error description.
-        * The string should be sanitized before it is used (e.g. emitted to logs or printed to
-        * stdout). Otherwise, a well crafted error message may trigger a security vulnerability in
+        * 
+        * The string should be sanitized before it is used (e.g., emitted to logs or printed to
+        * `stdout`). Otherwise, a well crafted error message may trigger a security vulnerability in
         * the terminal emulator or the logging subsystem.
         */
        public void set_data(string val) {
-               bindings.ErrorMessage_set_data(this.ptr, val);
+               bindings.ErrorMessage_set_data(this.ptr, InternalUtils.encodeString(val));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -67,7 +75,7 @@ public class ErrorMessage : CommonBase {
         * Constructs a new ErrorMessage given each field
         */
        public static ErrorMessage of(byte[] channel_id_arg, string data_arg) {
-               long ret = bindings.ErrorMessage_new(InternalUtils.check_arr_len(channel_id_arg, 32), data_arg);
+               long ret = bindings.ErrorMessage_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32)), InternalUtils.encodeString(data_arg));
                GC.KeepAlive(channel_id_arg);
                GC.KeepAlive(data_arg);
                if (ret >= 0 && ret <= 4096) { return null; }
@@ -115,16 +123,18 @@ public class ErrorMessage : CommonBase {
         * Serialize the ErrorMessage object into a byte array which can be read by ErrorMessage_read
         */
        public byte[] write() {
-               byte[] ret = bindings.ErrorMessage_write(this.ptr);
+               long ret = bindings.ErrorMessage_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 ErrorMessage from a byte array, created by ErrorMessage_write
         */
        public static Result_ErrorMessageDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.ErrorMessage_read(ser);
+               long ret = bindings.ErrorMessage_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ErrorMessageDecodeErrorZ ret_hu_conv = Result_ErrorMessageDecodeErrorZ.constr_from_ptr(ret);