6 namespace org { namespace ldk { namespace structs {
10 * A [`revoke_and_ack`] message to be sent to or received from a peer.
12 * [`revoke_and_ack`]: https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#completing-the-transition-to-the-updated-state-revoke_and_ack
14 public class RevokeAndACK : CommonBase {
15 internal RevokeAndACK(object _dummy, long ptr) : base(ptr) { }
17 if (ptr != 0) { bindings.RevokeAndACK_free(ptr); }
23 public ChannelId get_channel_id() {
24 long ret = bindings.RevokeAndACK_get_channel_id(this.ptr);
26 if (ret >= 0 && ret <= 4096) { return null; }
27 org.ldk.structs.ChannelId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelId(null, ret); }
28 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
35 public void set_channel_id(org.ldk.structs.ChannelId val) {
36 bindings.RevokeAndACK_set_channel_id(this.ptr, val.ptr);
39 if (this != null) { this.ptrs_to.AddLast(val); };
43 * The secret corresponding to the per-commitment point
45 public byte[] get_per_commitment_secret() {
46 long ret = bindings.RevokeAndACK_get_per_commitment_secret(this.ptr);
48 if (ret >= 0 && ret <= 4096) { return null; }
49 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
54 * The secret corresponding to the per-commitment point
56 public void set_per_commitment_secret(byte[] val) {
57 bindings.RevokeAndACK_set_per_commitment_secret(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
63 * The next sender-broadcast commitment transaction's per-commitment point
65 public byte[] get_next_per_commitment_point() {
66 long ret = bindings.RevokeAndACK_get_next_per_commitment_point(this.ptr);
68 if (ret >= 0 && ret <= 4096) { return null; }
69 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
74 * The next sender-broadcast commitment transaction's per-commitment point
76 public void set_next_per_commitment_point(byte[] val) {
77 bindings.RevokeAndACK_set_next_per_commitment_point(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 33)));
83 * Constructs a new RevokeAndACK given each field
85 public static RevokeAndACK of(org.ldk.structs.ChannelId channel_id_arg, byte[] per_commitment_secret_arg, byte[] next_per_commitment_point_arg) {
86 long ret = bindings.RevokeAndACK_new(channel_id_arg.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(per_commitment_secret_arg, 32)), InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(next_per_commitment_point_arg, 33)));
87 GC.KeepAlive(channel_id_arg);
88 GC.KeepAlive(per_commitment_secret_arg);
89 GC.KeepAlive(next_per_commitment_point_arg);
90 if (ret >= 0 && ret <= 4096) { return null; }
91 org.ldk.structs.RevokeAndACK ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.RevokeAndACK(null, ret); }
92 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
93 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(channel_id_arg); };
97 internal long clone_ptr() {
98 long ret = bindings.RevokeAndACK_clone_ptr(this.ptr);
104 * Creates a copy of the RevokeAndACK
106 public RevokeAndACK clone() {
107 long ret = bindings.RevokeAndACK_clone(this.ptr);
109 if (ret >= 0 && ret <= 4096) { return null; }
110 org.ldk.structs.RevokeAndACK ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.RevokeAndACK(null, ret); }
111 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
116 * Generates a non-cryptographic 64-bit hash of the RevokeAndACK.
119 long ret = bindings.RevokeAndACK_hash(this.ptr);
124 public override int GetHashCode() {
125 return (int)this.hash();
128 * Checks if two RevokeAndACKs contain equal inner contents.
129 * This ignores pointers and is_owned flags and looks at the values in fields.
130 * Two objects with NULL inner values will be considered "equal" here.
132 public bool eq(org.ldk.structs.RevokeAndACK b) {
133 bool ret = bindings.RevokeAndACK_eq(this.ptr, b.ptr);
136 if (this != null) { this.ptrs_to.AddLast(b); };
140 public override bool Equals(object o) {
141 if (!(o is RevokeAndACK)) return false;
142 return this.eq((RevokeAndACK)o);
145 * Serialize the RevokeAndACK object into a byte array which can be read by RevokeAndACK_read
147 public byte[] write() {
148 long ret = bindings.RevokeAndACK_write(this.ptr);
150 if (ret >= 0 && ret <= 4096) { return null; }
151 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
156 * Read a RevokeAndACK from a byte array, created by RevokeAndACK_write
158 public static Result_RevokeAndACKDecodeErrorZ read(byte[] ser) {
159 long ret = bindings.RevokeAndACK_read(InternalUtils.encodeUint8Array(ser));
161 if (ret >= 0 && ret <= 4096) { return null; }
162 Result_RevokeAndACKDecodeErrorZ ret_hu_conv = Result_RevokeAndACKDecodeErrorZ.constr_from_ptr(ret);