Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/assets/js/model/outbound.js')
-rw-r--r--web/assets/js/model/outbound.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js
index 83ac4306..c9400efc 100644
--- a/web/assets/js/model/outbound.js
+++ b/web/assets/js/model/outbound.js
@@ -206,16 +206,23 @@ class KcpStreamSettings extends CommonClass {
}
class WsStreamSettings extends CommonClass {
- constructor(path = '/', host = '') {
+ constructor(
+ path = '/',
+ host = '',
+ heartbeatPeriod = 0,
+
+ ) {
super();
this.path = path;
this.host = host;
+ this.heartbeatPeriod = heartbeatPeriod;
}
static fromJson(json = {}) {
return new WsStreamSettings(
json.path,
json.host,
+ json.heartbeatPeriod,
);
}
@@ -223,6 +230,7 @@ class WsStreamSettings extends CommonClass {
return {
path: this.path,
host: this.host,
+ heartbeatPeriod: this.heartbeatPeriod
};
}
}