[C#] Update auto-generated bindings to LDK 0.0.123
[ldk-java] / c_sharp / src / org / ldk / structs / InboundHTLCErr.cs
index ccca20d2e83bc3458d99bb430a814819fb820fa0..985eaf35ec076f70a0c347f94b8733decf9f115e 100644 (file)
@@ -89,5 +89,52 @@ public class InboundHTLCErr : CommonBase {
                return ret_hu_conv;
        }
 
+       internal long clone_ptr() {
+               long ret = bindings.InboundHTLCErr_clone_ptr(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Creates a copy of the InboundHTLCErr
+        */
+       public InboundHTLCErr clone() {
+               long ret = bindings.InboundHTLCErr_clone(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.InboundHTLCErr ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.InboundHTLCErr(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 InboundHTLCErr.
+        */
+       public long hash() {
+               long ret = bindings.InboundHTLCErr_hash(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       public override int GetHashCode() {
+               return (int)this.hash();
+       }
+       /**
+        * Checks if two InboundHTLCErrs 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.InboundHTLCErr b) {
+               bool ret = bindings.InboundHTLCErr_eq(this.ptr, 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 InboundHTLCErr)) return false;
+               return this.eq((InboundHTLCErr)o);
+       }
 }
 } } }