X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FPing.java;h=e36edb4c5a535079082011548ae49051dbd555f8;hb=2bb592fb946e316dba9f4d1123f8ac72ff4e9bf8;hp=fc20cc32ee5a3f41eb966bfce6773b10e54ca7c4;hpb=5e9de82b3a7712a41189756d9d16d946142b2ac5;p=ldk-java diff --git a/src/main/java/org/ldk/structs/Ping.java b/src/main/java/org/ldk/structs/Ping.java index fc20cc32..e36edb4c 100644 --- a/src/main/java/org/ldk/structs/Ping.java +++ b/src/main/java/org/ldk/structs/Ping.java @@ -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);