Skip to content

Commit 347a2d9

Browse files
author
Isaiah Becker-Mayer
committed
Makes max_unacknowledged_frame_count: 20, see #447
1 parent 7ec0048 commit 347a2d9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/ironrdp-connector/src/connection_activation.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,10 @@ fn create_client_confirm_active(
365365
})),
366366
}])),
367367
CapabilitySet::FrameAcknowledge(FrameAcknowledge {
368-
max_unacknowledged_frame_count: 2,
368+
// TODO: Revert this to 2 per FreeRDP.
369+
// This is a temporary hack to fix a resize bug, see:
370+
// https://github.com/Devolutions/IronRDP/issues/447
371+
max_unacknowledged_frame_count: 20,
369372
}),
370373
]);
371374

0 commit comments

Comments
 (0)