[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / Pong.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8
9 /**
10  * A [`pong`] message to be sent to or received from a peer.
11  * 
12  * [`pong`]: https://github.com/lightning/bolts/blob/master/01-messaging.md#the-ping-and-pong-messages
13  */
14 public class Pong : CommonBase {
15         internal Pong(object _dummy, long ptr) : base(ptr) { }
16         ~Pong() {
17                 if (ptr != 0) { bindings.Pong_free(ptr); }
18         }
19
20         /**
21          * The pong packet size.
22          * 
23          * This field is not sent on the wire. byteslen zeros are sent.
24          */
25         public short get_byteslen() {
26                 short ret = bindings.Pong_get_byteslen(this.ptr);
27                 GC.KeepAlive(this);
28                 return ret;
29         }
30
31         /**
32          * The pong packet size.
33          * 
34          * This field is not sent on the wire. byteslen zeros are sent.
35          */
36         public void set_byteslen(short val) {
37                 bindings.Pong_set_byteslen(this.ptr, val);
38                 GC.KeepAlive(this);
39                 GC.KeepAlive(val);
40         }
41
42         /**
43          * Constructs a new Pong given each field
44          */
45         public static Pong of(short byteslen_arg) {
46                 long ret = bindings.Pong_new(byteslen_arg);
47                 GC.KeepAlive(byteslen_arg);
48                 if (ret >= 0 && ret <= 4096) { return null; }
49                 org.ldk.structs.Pong ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Pong(null, ret); }
50                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
51                 return ret_hu_conv;
52         }
53
54         internal long clone_ptr() {
55                 long ret = bindings.Pong_clone_ptr(this.ptr);
56                 GC.KeepAlive(this);
57                 return ret;
58         }
59
60         /**
61          * Creates a copy of the Pong
62          */
63         public Pong clone() {
64                 long ret = bindings.Pong_clone(this.ptr);
65                 GC.KeepAlive(this);
66                 if (ret >= 0 && ret <= 4096) { return null; }
67                 org.ldk.structs.Pong ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Pong(null, ret); }
68                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
69                 return ret_hu_conv;
70         }
71
72         /**
73          * Generates a non-cryptographic 64-bit hash of the Pong.
74          */
75         public long hash() {
76                 long ret = bindings.Pong_hash(this.ptr);
77                 GC.KeepAlive(this);
78                 return ret;
79         }
80
81         public override int GetHashCode() {
82                 return (int)this.hash();
83         }
84         /**
85          * Checks if two Pongs contain equal inner contents.
86          * This ignores pointers and is_owned flags and looks at the values in fields.
87          * Two objects with NULL inner values will be considered "equal" here.
88          */
89         public bool eq(org.ldk.structs.Pong b) {
90                 bool ret = bindings.Pong_eq(this.ptr, b == null ? 0 : b.ptr);
91                 GC.KeepAlive(this);
92                 GC.KeepAlive(b);
93                 if (this != null) { this.ptrs_to.AddLast(b); };
94                 return ret;
95         }
96
97         public override bool Equals(object o) {
98                 if (!(o is Pong)) return false;
99                 return this.eq((Pong)o);
100         }
101         /**
102          * Serialize the Pong object into a byte array which can be read by Pong_read
103          */
104         public byte[] write() {
105                 long ret = bindings.Pong_write(this.ptr);
106                 GC.KeepAlive(this);
107                 if (ret >= 0 && ret <= 4096) { return null; }
108                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
109                 return ret_conv;
110         }
111
112         /**
113          * Read a Pong from a byte array, created by Pong_write
114          */
115         public static Result_PongDecodeErrorZ read(byte[] ser) {
116                 long ret = bindings.Pong_read(InternalUtils.encodeUint8Array(ser));
117                 GC.KeepAlive(ser);
118                 if (ret >= 0 && ret <= 4096) { return null; }
119                 Result_PongDecodeErrorZ ret_hu_conv = Result_PongDecodeErrorZ.constr_from_ptr(ret);
120                 return ret_hu_conv;
121         }
122
123 }
124 } } }