@@ -493,6 +493,7 @@ class xHTTPStreamSettings extends XrayCommonClass {
493
493
headers = [ ] ,
494
494
scMaxBufferedPosts = 30 ,
495
495
scMaxEachPostBytes = "1000000" ,
496
+ scStreamUpServerSecs = "0" ,
496
497
noSSEHeader = false ,
497
498
xPaddingBytes = "100-1000" ,
498
499
mode = MODE_OPTION . AUTO ,
@@ -503,6 +504,7 @@ class xHTTPStreamSettings extends XrayCommonClass {
503
504
this . headers = headers ;
504
505
this . scMaxBufferedPosts = scMaxBufferedPosts ;
505
506
this . scMaxEachPostBytes = scMaxEachPostBytes ;
507
+ this . scStreamUpServerSecs = scStreamUpServerSecs ;
506
508
this . noSSEHeader = noSSEHeader ;
507
509
this . xPaddingBytes = xPaddingBytes ;
508
510
this . mode = mode ;
@@ -523,6 +525,7 @@ class xHTTPStreamSettings extends XrayCommonClass {
523
525
XrayCommonClass . toHeaders ( json . headers ) ,
524
526
json . scMaxBufferedPosts ,
525
527
json . scMaxEachPostBytes ,
528
+ json . scStreamUpServerSecs ,
526
529
json . noSSEHeader ,
527
530
json . xPaddingBytes ,
528
531
json . mode ,
@@ -536,6 +539,7 @@ class xHTTPStreamSettings extends XrayCommonClass {
536
539
headers : XrayCommonClass . toV2Headers ( this . headers , false ) ,
537
540
scMaxBufferedPosts : this . scMaxBufferedPosts ,
538
541
scMaxEachPostBytes : this . scMaxEachPostBytes ,
542
+ scStreamUpServerSecs : this . scStreamUpServerSecs ,
539
543
noSSEHeader : this . noSSEHeader ,
540
544
xPaddingBytes : this . xPaddingBytes ,
541
545
mode : this . mode ,
0 commit comments