diff options
Diffstat (limited to 'web/assets/js/model/outbound.js')
| -rw-r--r-- | web/assets/js/model/outbound.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index d58839bc..4bf88e0c 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -411,14 +411,14 @@ class SockoptStreamSettings extends CommonClass { tcpFastOpen = false, tcpKeepAliveInterval = 0, tcpMptcp = false, - tcpNoDelay = false + penetrate = false ) { super(); this.dialerProxy = dialerProxy; this.tcpFastOpen = tcpFastOpen; this.tcpKeepAliveInterval = tcpKeepAliveInterval; this.tcpMptcp = tcpMptcp; - this.tcpNoDelay = tcpNoDelay; + this.penetrate = penetrate; } static fromJson(json = {}) { @@ -428,7 +428,7 @@ class SockoptStreamSettings extends CommonClass { json.tcpFastOpen, json.tcpKeepAliveInterval, json.tcpMptcp, - json.tcpNoDelay, + json.penetrate, ); } @@ -438,7 +438,7 @@ class SockoptStreamSettings extends CommonClass { tcpFastOpen: this.tcpFastOpen, tcpKeepAliveInterval: this.tcpKeepAliveInterval, tcpMptcp: this.tcpMptcp, - tcpNoDelay: this.tcpNoDelay, + penetrate: this.penetrate, }; } } |
