X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FUpdateFailHTLC.cs;h=e4ba14962386b0c20ef83ef89e71ecf83ee659d0;hb=3d1f246d05172683acd3b81836de4e4e9f0c1afd;hp=a733a8077c3b87378f27539918939bf9b9a0db91;hpb=8aa8a96fc6d8fcdd3fbb419b4b4c12482af14938;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/UpdateFailHTLC.cs b/c_sharp/src/org/ldk/structs/UpdateFailHTLC.cs index a733a807..e4ba1496 100644 --- a/c_sharp/src/org/ldk/structs/UpdateFailHTLC.cs +++ b/c_sharp/src/org/ldk/structs/UpdateFailHTLC.cs @@ -7,7 +7,9 @@ namespace org { namespace ldk { namespace structs { /** - * An update_fail_htlc message to be sent or received from a peer + * An [`update_fail_htlc`] message to be sent to or received from a peer. + * + * [`update_fail_htlc`]: https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#removing-an-htlc-update_fulfill_htlc-update_fail_htlc-and-update_fail_malformed_htlc */ public class UpdateFailHTLC : CommonBase { internal UpdateFailHTLC(object _dummy, long ptr) : base(ptr) { } @@ -19,16 +21,18 @@ public class UpdateFailHTLC : CommonBase { * The channel ID */ public byte[] get_channel_id() { - byte[] ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr); + long ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr); GC.KeepAlive(this); - return ret; + if (ret >= 0 && ret <= 4096) { return null; } + byte[] ret_conv = InternalUtils.decodeUint8Array(ret); + return ret_conv; } /** * The channel ID */ public void set_channel_id(byte[] val) { - bindings.UpdateFailHTLC_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32)); + bindings.UpdateFailHTLC_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32))); GC.KeepAlive(this); GC.KeepAlive(val); } @@ -69,6 +73,18 @@ public class UpdateFailHTLC : CommonBase { return ret_hu_conv; } + /** + * Generates a non-cryptographic 64-bit hash of the UpdateFailHTLC. + */ + public long hash() { + long ret = bindings.UpdateFailHTLC_hash(this.ptr); + GC.KeepAlive(this); + return ret; + } + + public override int GetHashCode() { + return (int)this.hash(); + } /** * Checks if two UpdateFailHTLCs contain equal inner contents. * This ignores pointers and is_owned flags and looks at the values in fields. @@ -90,16 +106,18 @@ public class UpdateFailHTLC : CommonBase { * Serialize the UpdateFailHTLC object into a byte array which can be read by UpdateFailHTLC_read */ public byte[] write() { - byte[] ret = bindings.UpdateFailHTLC_write(this.ptr); + long ret = bindings.UpdateFailHTLC_write(this.ptr); GC.KeepAlive(this); - return ret; + if (ret >= 0 && ret <= 4096) { return null; } + byte[] ret_conv = InternalUtils.decodeUint8Array(ret); + return ret_conv; } /** * Read a UpdateFailHTLC from a byte array, created by UpdateFailHTLC_write */ public static Result_UpdateFailHTLCDecodeErrorZ read(byte[] ser) { - long ret = bindings.UpdateFailHTLC_read(ser); + long ret = bindings.UpdateFailHTLC_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_UpdateFailHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFailHTLCDecodeErrorZ.constr_from_ptr(ret);