@push.rocks/smartproxy 3.18.1 → 3.18.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@push.rocks/smartproxy',
|
|
6
|
-
version: '3.18.
|
|
6
|
+
version: '3.18.2',
|
|
7
7
|
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, and dynamic routing with authentication options.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLDRMQUE0TDtDQUMxTSxDQUFBIn0=
|
|
@@ -351,7 +351,7 @@ export class PortProxy {
|
|
|
351
351
|
listeningPorts.add(port);
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
|
-
// Also ensure the default fromPort is listened to if it isn
|
|
354
|
+
// Also ensure the default fromPort is listened to if it isn't already in the ranges.
|
|
355
355
|
listeningPorts.add(this.settings.fromPort);
|
|
356
356
|
}
|
|
357
357
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@push.rocks/smartproxy",
|
|
3
|
-
"version": "3.18.
|
|
3
|
+
"version": "3.18.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, and dynamic routing with authentication options.",
|
|
6
6
|
"main": "dist_ts/index.js",
|
package/ts/00_commitinfo_data.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@push.rocks/smartproxy',
|
|
6
|
-
version: '3.18.
|
|
6
|
+
version: '3.18.2',
|
|
7
7
|
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, and dynamic routing with authentication options.'
|
|
8
8
|
}
|
package/ts/classes.portproxy.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as plugins from './plugins.js';
|
|
2
2
|
|
|
3
|
-
/** Domain configuration with per
|
|
3
|
+
/** Domain configuration with per-domain allowed port ranges */
|
|
4
4
|
export interface IDomainConfig {
|
|
5
5
|
domains: string[]; // Glob patterns for domain(s)
|
|
6
6
|
allowedIPs: string[]; // Glob patterns for allowed IPs
|
|
@@ -413,7 +413,7 @@ export class PortProxy {
|
|
|
413
413
|
listeningPorts.add(port);
|
|
414
414
|
}
|
|
415
415
|
}
|
|
416
|
-
// Also ensure the default fromPort is listened to if it isn
|
|
416
|
+
// Also ensure the default fromPort is listened to if it isn't already in the ranges.
|
|
417
417
|
listeningPorts.add(this.settings.fromPort);
|
|
418
418
|
} else {
|
|
419
419
|
listeningPorts.add(this.settings.fromPort);
|