X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FNetAddress.ts;h=d80b5189cf2c2a2818f6f28a38f0c041b0f7e5e2;hb=0fee03a8095f5599f8eccd920c1b1af6b3a20260;hp=269741b9da8792956a732f5817984d9beffdcaf9;hpb=c45b91b3165ba0ff774d12d357188cae979574d3;p=ldk-java diff --git a/ts/structs/NetAddress.ts b/ts/structs/NetAddress.ts index 269741b9..d80b5189 100644 --- a/ts/structs/NetAddress.ts +++ b/ts/structs/NetAddress.ts @@ -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); @@ -73,9 +76,43 @@ export class OnionV3 extends NetAddress { return ret_hu_conv; } + public static NetAddress constructor_ipv4(Uint8Array addr, number 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(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 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(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; + } + public Uint8Array write() { Uint8Array ret = bindings.NetAddress_write(this.ptr); return ret; } + public static Result_NetAddressDecodeErrorZ constructor_read(Uint8Array ser) { + number ret = bindings.NetAddress_read(ser); + Result_NetAddressDecodeErrorZ ret_hu_conv = Result_NetAddressDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + }