diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2024-03-12 20:15:33 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2024-03-12 20:15:33 +0300 |
| commit | 4d07b99fe7aae86f228694f68ebce296291915cd (patch) | |
| tree | ff54356f209746562586e5ca93b7e2430c1e100e /web/assets/js | |
| parent | 8b5fe0b018af70c5302966f1d3d4d9a1cdd82dad (diff) | |
Xray Outbound - Authority gRPC
Diffstat (limited to 'web/assets/js')
| -rw-r--r-- | web/assets/js/model/outbound.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index 34055ef6..46390054 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -257,20 +257,22 @@ class QuicStreamSettings extends CommonClass { } class GrpcStreamSettings extends CommonClass { - constructor(serviceName="", multiMode=false) { + constructor(serviceName="", multiMode=false, authority="") { super(); this.serviceName = serviceName; this.multiMode = multiMode; + this.authority = authority; } static fromJson(json={}) { - return new GrpcStreamSettings(json.serviceName, json.multiMode); + return new GrpcStreamSettings(json.serviceName, json.multiMode,json.authority); } toJson() { return { serviceName: this.serviceName, multiMode: this.multiMode, + authority: this.authority } } } |
