[Java] Update auto-generated Java bindings to LDK 0.0.121
[ldk-java] / src / main / java / org / ldk / structs / Ping.java
index fc20cc32ee5a3f41eb966bfce6773b10e54ca7c4..e36edb4c5a535079082011548ae49051dbd555f8 100644 (file)
@@ -9,7 +9,9 @@ import javax.annotation.Nullable;
 
 
 /**
- * A ping message to be sent or received from a peer
+ * A [`ping`] message to be sent to or received from a peer.
+ * 
+ * [`ping`]: https://github.com/lightning/bolts/blob/master/01-messaging.md#the-ping-and-pong-messages
  */
 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class Ping extends CommonBase {
@@ -21,7 +23,7 @@ public class Ping extends CommonBase {
        }
 
        /**
-        * The desired response length
+        * The desired response length.
         */
        public short get_ponglen() {
                short ret = bindings.Ping_get_ponglen(this.ptr);
@@ -30,7 +32,7 @@ public class Ping extends CommonBase {
        }
 
        /**
-        * The desired response length
+        * The desired response length.
         */
        public void set_ponglen(short val) {
                bindings.Ping_set_ponglen(this.ptr, val);
@@ -40,6 +42,7 @@ public class Ping extends CommonBase {
 
        /**
         * The ping packet size.
+        * 
         * This field is not sent on the wire. byteslen zeros are sent.
         */
        public short get_byteslen() {
@@ -50,6 +53,7 @@ public class Ping extends CommonBase {
 
        /**
         * The ping packet size.
+        * 
         * This field is not sent on the wire. byteslen zeros are sent.
         */
        public void set_byteslen(short val) {
@@ -89,12 +93,24 @@ public class Ping extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Generates a non-cryptographic 64-bit hash of the Ping.
+        */
+       public long hash() {
+               long ret = bindings.Ping_hash(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
+       @Override public int hashCode() {
+               return (int)this.hash();
+       }
        /**
         * Checks if two Pings 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 boolean eq(Ping b) {
+       public boolean eq(org.ldk.structs.Ping b) {
                boolean ret = bindings.Ping_eq(this.ptr, b == null ? 0 : b.ptr);
                Reference.reachabilityFence(this);
                Reference.reachabilityFence(b);