X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FReplyShortChannelIdsEnd.cs;h=d27596306702713812b3a2963ee64f4ceff415a2;hb=592c64eb658d92e314a2b983cea16cecf3882474;hp=f0ecf97ae9be48b0374e0bc19133320c7b631830;hpb=8aa8a96fc6d8fcdd3fbb419b4b4c12482af14938;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/ReplyShortChannelIdsEnd.cs b/c_sharp/src/org/ldk/structs/ReplyShortChannelIdsEnd.cs index f0ecf97a..d2759630 100644 --- a/c_sharp/src/org/ldk/structs/ReplyShortChannelIdsEnd.cs +++ b/c_sharp/src/org/ldk/structs/ReplyShortChannelIdsEnd.cs @@ -7,10 +7,12 @@ namespace org { namespace ldk { namespace structs { /** - * A reply_short_channel_ids_end message is sent as a reply to a - * query_short_channel_ids message. The query recipient makes a best + * A [`reply_short_channel_ids_end`] message is sent as a reply to a + * message. The query recipient makes a best * effort to respond based on their local network view which may not be * a perfect view of the network. + * + * [`reply_short_channel_ids_end`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#the-query_short_channel_idsreply_short_channel_ids_end-messages */ public class ReplyShortChannelIdsEnd : CommonBase { internal ReplyShortChannelIdsEnd(object _dummy, long ptr) : base(ptr) { } @@ -22,23 +24,25 @@ public class ReplyShortChannelIdsEnd : CommonBase { * The genesis hash of the blockchain that was queried */ public byte[] get_chain_hash() { - byte[] ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr); + long ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr); GC.KeepAlive(this); - return ret; + if (ret >= 0 && ret <= 4096) { return null; } + byte[] ret_conv = InternalUtils.decodeUint8Array(ret); + return ret_conv; } /** * The genesis hash of the blockchain that was queried */ public void set_chain_hash(byte[] val) { - bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, InternalUtils.check_arr_len(val, 32)); + bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32))); GC.KeepAlive(this); GC.KeepAlive(val); } /** * Indicates if the query recipient maintains up-to-date channel - * information for the chain_hash + * information for the `chain_hash` */ public bool get_full_information() { bool ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this.ptr); @@ -48,7 +52,7 @@ public class ReplyShortChannelIdsEnd : CommonBase { /** * Indicates if the query recipient maintains up-to-date channel - * information for the chain_hash + * information for the `chain_hash` */ public void set_full_information(bool val) { bindings.ReplyShortChannelIdsEnd_set_full_information(this.ptr, val); @@ -60,7 +64,7 @@ public class ReplyShortChannelIdsEnd : CommonBase { * Constructs a new ReplyShortChannelIdsEnd given each field */ public static ReplyShortChannelIdsEnd of(byte[] chain_hash_arg, bool full_information_arg) { - long ret = bindings.ReplyShortChannelIdsEnd_new(InternalUtils.check_arr_len(chain_hash_arg, 32), full_information_arg); + long ret = bindings.ReplyShortChannelIdsEnd_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(chain_hash_arg, 32)), full_information_arg); GC.KeepAlive(chain_hash_arg); GC.KeepAlive(full_information_arg); if (ret >= 0 && ret <= 4096) { return null; } @@ -87,13 +91,25 @@ public class ReplyShortChannelIdsEnd : CommonBase { return ret_hu_conv; } + /** + * Generates a non-cryptographic 64-bit hash of the ReplyShortChannelIdsEnd. + */ + public long hash() { + long ret = bindings.ReplyShortChannelIdsEnd_hash(this.ptr); + GC.KeepAlive(this); + return ret; + } + + public override int GetHashCode() { + return (int)this.hash(); + } /** * Checks if two ReplyShortChannelIdsEnds 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 bool eq(org.ldk.structs.ReplyShortChannelIdsEnd b) { - bool ret = bindings.ReplyShortChannelIdsEnd_eq(this.ptr, b == null ? 0 : b.ptr); + bool ret = bindings.ReplyShortChannelIdsEnd_eq(this.ptr, b.ptr); GC.KeepAlive(this); GC.KeepAlive(b); if (this != null) { this.ptrs_to.AddLast(b); }; @@ -108,16 +124,18 @@ public class ReplyShortChannelIdsEnd : CommonBase { * Serialize the ReplyShortChannelIdsEnd object into a byte array which can be read by ReplyShortChannelIdsEnd_read */ public byte[] write() { - byte[] ret = bindings.ReplyShortChannelIdsEnd_write(this.ptr); + long ret = bindings.ReplyShortChannelIdsEnd_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 ReplyShortChannelIdsEnd from a byte array, created by ReplyShortChannelIdsEnd_write */ public static Result_ReplyShortChannelIdsEndDecodeErrorZ read(byte[] ser) { - long ret = bindings.ReplyShortChannelIdsEnd_read(ser); + long ret = bindings.ReplyShortChannelIdsEnd_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_ReplyShortChannelIdsEndDecodeErrorZ ret_hu_conv = Result_ReplyShortChannelIdsEndDecodeErrorZ.constr_from_ptr(ret);