-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(connector): send join requests in a single batch #347
Conversation
Coverage Report 🤖 ⚙️Past: New: Diff: +0.01% [this comment will be updated automatically] |
|
||
let written = ironrdp_pdu::encode_buf(&channel_join_request, output).map_err(ConnectorError::pdu)?; | ||
written += ironrdp_pdu::encode_buf(&channel_join_request, output).map_err(ConnectorError::pdu)?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
written = written.checked_add(ironrdp_pdu::encode_buf(&channel_join_request, output).map_err(ConnectorError::pdu)?).unwrap();
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm otherwise
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
e4a6a8c
to
64ee151
Compare
Closes #112
Related to #314