Make genbindings.sh only build one of java/wasm, test wasm in CI
[ldk-java] / ts / structs / NetAddress.ts
index 0c93f092731777c077962a208073c7dd5cc0b64b..d80b5189cf2c2a2818f6f28a38f0c041b0f7e5e2 100644 (file)
@@ -45,12 +45,10 @@ export class IPv6 extends NetAddress {
        }
 }
 export class OnionV2 extends NetAddress {
-       public addr: Uint8Array;
-       public port: number;
+       public onion_v2: Uint8Array;
        private constructor(ptr: number, obj: bindings.LDKNetAddress.OnionV2) {
                super(null, ptr);
-               this.addr = obj.addr;
-               this.port = obj.port;
+               this.onion_v2 = obj.onion_v2;
        }
 }
 export class OnionV3 extends NetAddress {
@@ -66,6 +64,11 @@ export class OnionV3 extends NetAddress {
                this.port = obj.port;
        }
 }
+       public number clone_ptr() {
+               number ret = bindings.NetAddress_clone_ptr(this.ptr);
+               return ret;
+       }
+
        public NetAddress clone() {
                number ret = bindings.NetAddress_clone(this.ptr);
                NetAddress ret_hu_conv = NetAddress.constr_from_ptr(ret);
@@ -74,28 +77,28 @@ export class OnionV3 extends NetAddress {
        }
 
        public static NetAddress constructor_ipv4(Uint8Array addr, number port) {
-               number ret = bindings.NetAddress_ipv4(addr, port);
+               number ret = bindings.NetAddress_ipv4(InternalUtils.check_arr_len(addr, 4), port);
                NetAddress ret_hu_conv = NetAddress.constr_from_ptr(ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
 
        public static NetAddress constructor_ipv6(Uint8Array addr, number port) {
-               number ret = bindings.NetAddress_ipv6(addr, port);
+               number ret = bindings.NetAddress_ipv6(InternalUtils.check_arr_len(addr, 16), port);
                NetAddress ret_hu_conv = NetAddress.constr_from_ptr(ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
 
-       public static NetAddress constructor_onion_v2(Uint8Array addr, number port) {
-               number ret = bindings.NetAddress_onion_v2(addr, port);
+       public static NetAddress constructor_onion_v2(Uint8Array a) {
+               number ret = bindings.NetAddress_onion_v2(InternalUtils.check_arr_len(a, 12));
                NetAddress ret_hu_conv = NetAddress.constr_from_ptr(ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
 
        public static NetAddress constructor_onion_v3(Uint8Array ed25519_pubkey, number checksum, number version, number port) {
-               number ret = bindings.NetAddress_onion_v3(ed25519_pubkey, checksum, version, port);
+               number ret = bindings.NetAddress_onion_v3(InternalUtils.check_arr_len(ed25519_pubkey, 32), checksum, version, port);
                NetAddress ret_hu_conv = NetAddress.constr_from_ptr(ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;