[C#] Update auto-generated files
[ldk-java] / c_sharp / src / org / ldk / structs / ChannelFeatures.cs
index c6232af317f0e07fcf558b0d085834d4435fbc44..097e54c9a195c436861bac550bb0b1f25651550d 100644 (file)
@@ -61,6 +61,17 @@ public class ChannelFeatures : CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Returns true if this `Features` object contains required features unknown by `other`.
+        */
+       public bool requires_unknown_bits_from(org.ldk.structs.ChannelFeatures other) {
+               bool ret = bindings.ChannelFeatures_requires_unknown_bits_from(this.ptr, other == null ? 0 : other.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(other);
+               if (this != null) { this.ptrs_to.AddLast(other); };
+               return ret;
+       }
+
        /**
         * Returns true if this `Features` object contains unknown feature flags which are set as
         * \"required\".
@@ -71,6 +82,42 @@ public class ChannelFeatures : CommonBase {
                return ret;
        }
 
+       /**
+        * Sets a required custom feature bit. Errors if `bit` is outside the custom range as defined
+        * by [bLIP 2] or if it is a known `T` feature.
+        * 
+        * Note: Required bits are even. If an odd bit is given, then the corresponding even bit will
+        * be set instead (i.e., `bit - 1`).
+        * 
+        * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
+        */
+       public Result_NoneNoneZ set_required_custom_bit(long bit) {
+               long ret = bindings.ChannelFeatures_set_required_custom_bit(this.ptr, bit);
+               GC.KeepAlive(this);
+               GC.KeepAlive(bit);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Sets an optional custom feature bit. Errors if `bit` is outside the custom range as defined
+        * by [bLIP 2] or if it is a known `T` feature.
+        * 
+        * Note: Optional bits are odd. If an even bit is given, then the corresponding odd bit will be
+        * set instead (i.e., `bit + 1`).
+        * 
+        * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
+        */
+       public Result_NoneNoneZ set_optional_custom_bit(long bit) {
+               long ret = bindings.ChannelFeatures_set_optional_custom_bit(this.ptr, bit);
+               GC.KeepAlive(this);
+               GC.KeepAlive(bit);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
        /**
         * Serialize the ChannelFeatures object into a byte array which can be read by ChannelFeatures_read
         */