Fixed the start port

This commit is contained in:
Sambo Chea 2023-07-14 08:31:10 +07:00
parent 775c5da038
commit 62db7f8145
Signed by: sombochea
GPG Key ID: 3C7CF22A05D95490
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
### 14/07/2023 (1.0.8)
- Fixed the start with port unable to start
### 11/07/2023 (1.0.8)
- Support tunnel with host with port

View File

@ -1,6 +1,6 @@
{
"name": "@cubetiq/hlt",
"version": "0.1.8",
"version": "0.1.9",
"description": "A lightweight http tunnel client using nodejs and socket.io client",
"main": "dist/cli.js",
"bin": {

View File

@ -305,7 +305,7 @@ class HttpTunnelClient implements Client {
return;
}
} else {
if (address) {
if (typeof address !== "number" && address && address.includes(":")) {
const [host, portStr] = address.split(":");
if (host) {
options.host = host;
@ -321,6 +321,7 @@ class HttpTunnelClient implements Client {
}
} else {
options.port = port;
console.log(`default port: ${port} will be forwared`);
}
}