X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FWarningMessage.java;h=daeeea40adf469ee97142d150d09d3707a656e10;hb=2bb592fb946e316dba9f4d1123f8ac72ff4e9bf8;hp=d7d8c2ecb8d93461cd1081308358139f4c0875bb;hpb=3c60e0fd0da579be9932801c1be2b32014c944a5;p=ldk-java diff --git a/src/main/java/org/ldk/structs/WarningMessage.java b/src/main/java/org/ldk/structs/WarningMessage.java index d7d8c2ec..daeeea40 100644 --- a/src/main/java/org/ldk/structs/WarningMessage.java +++ b/src/main/java/org/ldk/structs/WarningMessage.java @@ -9,7 +9,9 @@ import javax.annotation.Nullable; /** - * A warning message to be sent or received from a peer + * A [`warning`] message to be sent to or received from a peer. + * + * [`warning`]: https://github.com/lightning/bolts/blob/master/01-messaging.md#the-error-and-warning-messages */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class WarningMessage extends CommonBase { @@ -44,6 +46,7 @@ public class WarningMessage extends CommonBase { /** * A possibly human-readable warning description. + * * The string should be sanitized before it is used (e.g. emitted to logs or printed to * stdout). Otherwise, a well crafted error message may trigger a security vulnerability in * the terminal emulator or the logging subsystem. @@ -56,6 +59,7 @@ public class WarningMessage extends CommonBase { /** * A possibly human-readable warning description. + * * The string should be sanitized before it is used (e.g. emitted to logs or printed to * stdout). Otherwise, a well crafted error message may trigger a security vulnerability in * the terminal emulator or the logging subsystem. @@ -97,6 +101,35 @@ public class WarningMessage extends CommonBase { return ret_hu_conv; } + /** + * Generates a non-cryptographic 64-bit hash of the WarningMessage. + */ + public long hash() { + long ret = bindings.WarningMessage_hash(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + @Override public int hashCode() { + return (int)this.hash(); + } + /** + * Checks if two WarningMessages 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(org.ldk.structs.WarningMessage b) { + boolean ret = bindings.WarningMessage_eq(this.ptr, b == null ? 0 : b.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(b); + if (this != null) { this.ptrs_to.add(b); }; + return ret; + } + + @Override public boolean equals(Object o) { + if (!(o instanceof WarningMessage)) return false; + return this.eq((WarningMessage)o); + } /** * Serialize the WarningMessage object into a byte array which can be read by WarningMessage_read */