File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ impl Server {
8080 // After the connection is established we increase the data window to the configured value
8181 . with_bidirectional_local_data_window ( builder. data_window ) ?
8282 . with_bidirectional_remote_data_window ( initial_max_data) ?
83+ . with_pto_jitter_percentage ( builder. pto_jitter_percentage ) ?
8384 . with_initial_round_trip_time ( DEFAULT_INITIAL_RTT ) ?;
8485
8586 let event = ( ( ConfirmComplete , MtuConfirmComplete ) , subscriber) ;
@@ -212,6 +213,7 @@ impl Client {
212213 . with_data_window ( builder. data_window ) ?
213214 . with_bidirectional_local_data_window ( builder. data_window ) ?
214215 . with_bidirectional_remote_data_window ( builder. data_window ) ?
216+ . with_pto_jitter_percentage ( builder. pto_jitter_percentage ) ?
215217 . with_initial_round_trip_time ( DEFAULT_INITIAL_RTT ) ?;
216218
217219 let event = ( ( ConfirmComplete , MtuConfirmComplete ) , subscriber) ;
You can’t perform that action at this time.
0 commit comments