@@ -67,7 +67,7 @@ def add(self, remark: str, address: str, inbound: dict, settings: dict):
67
67
multiMode = multi_mode ,
68
68
sc_max_each_post_bytes = inbound .get ('scMaxEachPostBytes' , 1000000 ),
69
69
sc_max_concurrent_posts = inbound .get ('scMaxConcurrentPosts' , 100 ),
70
- sc_min_posts_interval_ms = inbound .get ('scMinPostsIntervalMs' , 10 ),
70
+ sc_min_posts_interval_ms = inbound .get ('scMinPostsIntervalMs' , 30 ),
71
71
)
72
72
73
73
elif inbound ["protocol" ] == "vless" :
@@ -93,7 +93,7 @@ def add(self, remark: str, address: str, inbound: dict, settings: dict):
93
93
multiMode = multi_mode ,
94
94
sc_max_each_post_bytes = inbound .get ('scMaxEachPostBytes' , 1000000 ),
95
95
sc_max_concurrent_posts = inbound .get ('scMaxConcurrentPosts' , 100 ),
96
- sc_min_posts_interval_ms = inbound .get ('scMinPostsIntervalMs' , 10 ),
96
+ sc_min_posts_interval_ms = inbound .get ('scMinPostsIntervalMs' , 30 ),
97
97
)
98
98
99
99
elif inbound ["protocol" ] == "trojan" :
@@ -119,7 +119,7 @@ def add(self, remark: str, address: str, inbound: dict, settings: dict):
119
119
multiMode = multi_mode ,
120
120
sc_max_each_post_bytes = inbound .get ('scMaxEachPostBytes' , 1000000 ),
121
121
sc_max_concurrent_posts = inbound .get ('scMaxConcurrentPosts' , 100 ),
122
- sc_min_posts_interval_ms = inbound .get ('scMinPostsIntervalMs' , 10 ),
122
+ sc_min_posts_interval_ms = inbound .get ('scMinPostsIntervalMs' , 30 ),
123
123
)
124
124
125
125
elif inbound ["protocol" ] == "shadowsocks" :
@@ -926,7 +926,7 @@ def add(self, remark: str, address: str, inbound: dict, settings: dict):
926
926
random_user_agent = inbound .get ('random_user_agent' , False ),
927
927
sc_max_each_post_bytes = inbound .get ('scMaxEachPostBytes' , 1000000 ),
928
928
sc_max_concurrent_posts = inbound .get ('scMaxConcurrentPosts' , 100 ),
929
- sc_min_posts_interval_ms = inbound .get ('scMinPostsIntervalMs' , 10 ),
929
+ sc_min_posts_interval_ms = inbound .get ('scMinPostsIntervalMs' , 30 ),
930
930
)
931
931
932
932
mux_json = json .loads (self .mux_template )
0 commit comments