@@ -494,7 +494,7 @@ class xHTTPStreamSettings extends XrayCommonClass {
494
494
path = '/' ,
495
495
host = '' ,
496
496
headers = [ ] ,
497
- scMaxConcurrentPosts = "100 " ,
497
+ scMaxBufferedPosts = "30 " ,
498
498
scMaxEachPostBytes = "1000000" ,
499
499
scMinPostsIntervalMs = "30" ,
500
500
noSSEHeader = false ,
@@ -514,7 +514,7 @@ class xHTTPStreamSettings extends XrayCommonClass {
514
514
this . path = path ;
515
515
this . host = host ;
516
516
this . headers = headers ;
517
- this . scMaxConcurrentPosts = scMaxConcurrentPosts ;
517
+ this . scMaxBufferedPosts = scMaxBufferedPosts ;
518
518
this . scMaxEachPostBytes = scMaxEachPostBytes ;
519
519
this . scMinPostsIntervalMs = scMinPostsIntervalMs ;
520
520
this . noSSEHeader = noSSEHeader ;
@@ -537,7 +537,7 @@ class xHTTPStreamSettings extends XrayCommonClass {
537
537
json . path ,
538
538
json . host ,
539
539
XrayCommonClass . toHeaders ( json . headers ) ,
540
- json . scMaxConcurrentPosts ,
540
+ json . scMaxBufferedPosts ,
541
541
json . scMaxEachPostBytes ,
542
542
json . scMinPostsIntervalMs ,
543
543
json . noSSEHeader ,
@@ -553,7 +553,7 @@ class xHTTPStreamSettings extends XrayCommonClass {
553
553
path : this . path ,
554
554
host : this . host ,
555
555
headers : XrayCommonClass . toV2Headers ( this . headers , false ) ,
556
- scMaxConcurrentPosts : this . scMaxConcurrentPosts ,
556
+ scMaxBufferedPosts : this . scMaxBufferedPosts ,
557
557
scMaxEachPostBytes : this . scMaxEachPostBytes ,
558
558
scMinPostsIntervalMs : this . scMinPostsIntervalMs ,
559
559
noSSEHeader : this . noSSEHeader ,
0 commit comments