]> git.bitcoin.ninja Git - ldk-java/blobdiff - c_sharp/src/org/ldk/structs/Hostname.cs
[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / Hostname.cs
index 4a7bc42d28db12cc404ffbd44713e8a6a2d410a6..2e3e071f753e4132398853d1e35fdda5628e77a0 100644 (file)
@@ -11,7 +11,9 @@ namespace org { namespace ldk { namespace structs {
  * Only the character set and length will be validated.
  * The character set consists of ASCII alphanumeric characters, hyphens, and periods.
  * Its length is guaranteed to be representable by a single byte.
- * This serialization is used by BOLT 7 hostnames.
+ * This serialization is used by [`BOLT 7`] hostnames.
+ * 
+ * [`BOLT 7`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md
  */
 public class Hostname : CommonBase {
        internal Hostname(object _dummy, long ptr) : base(ptr) { }
@@ -63,5 +65,27 @@ public class Hostname : CommonBase {
                return ret;
        }
 
+       /**
+        * Serialize the Hostname object into a byte array which can be read by Hostname_read
+        */
+       public byte[] write() {
+               long ret = bindings.Hostname_write(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
+       }
+
+       /**
+        * Read a Hostname from a byte array, created by Hostname_write
+        */
+       public static Result_HostnameDecodeErrorZ read(byte[] ser) {
+               long ret = bindings.Hostname_read(InternalUtils.encodeUint8Array(ser));
+               GC.KeepAlive(ser);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_HostnameDecodeErrorZ ret_hu_conv = Result_HostnameDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
 }
 } } }