[C#] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
[ldk-java] / c_sharp / src / org / ldk / structs / Destination.cs
index 3d009773074571e494cd2eda88e2d073582d2fe6..74cf38c85afd63228a88e1cb5212f0fe3995165f 100644 (file)
@@ -77,7 +77,7 @@ public class Destination : CommonBase {
         * Utility method to constructs a new BlindedPath-variant Destination
         */
        public static Destination blinded_path(org.ldk.structs.BlindedPath a) {
-               long ret = bindings.Destination_blinded_path(a == null ? 0 : a.ptr);
+               long ret = bindings.Destination_blinded_path(a.ptr);
                GC.KeepAlive(a);
                if (ret >= 0 && ret <= 4096) { return null; }
                org.ldk.structs.Destination ret_hu_conv = org.ldk.structs.Destination.constr_from_ptr(ret);
@@ -86,5 +86,44 @@ public class Destination : CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Generates a non-cryptographic 64-bit hash of the Destination.
+        */
+       public long hash() {
+               long ret = bindings.Destination_hash(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       public override int GetHashCode() {
+               return (int)this.hash();
+       }
+       /**
+        * Checks if two Destinations contain equal inner contents.
+        * This ignores pointers and is_owned flags and looks at the values in fields.
+        */
+       public bool eq(org.ldk.structs.Destination b) {
+               bool ret = bindings.Destination_eq(this.ptr, b.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(b);
+               return ret;
+       }
+
+       public override bool Equals(object o) {
+               if (!(o is Destination)) return false;
+               return this.eq((Destination)o);
+       }
+       /**
+        * Attempts to resolve the [`IntroductionNode::DirectedShortChannelId`] of a
+        * [`Destination::BlindedPath`] to a [`IntroductionNode::NodeId`], if applicable, using the
+        * provided [`ReadOnlyNetworkGraph`].
+        */
+       public void resolve(org.ldk.structs.ReadOnlyNetworkGraph network_graph) {
+               bindings.Destination_resolve(this.ptr, network_graph.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(network_graph);
+               if (this != null) { this.ptrs_to.AddLast(network_graph); };
+       }
+
 }
 } } }