We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dc8a56 commit 265b661Copy full SHA for 265b661
crates/ironrdp-dvc/src/server.rs
@@ -163,6 +163,7 @@ impl SvcProcessor for DrdynvcServer {
163
let channel_id = data.channel_id();
164
let c = self.channel_by_id(channel_id).map_err(|e| decode_err!(e))?;
165
if c.state != ChannelState::Opened {
166
+ debug!(?channel_id, ?c.state, "Invalid channel state");
167
return Err(pdu_other_err!("invalid channel state"));
168
}
169
if let Some(complete) = c.complete_data.process_data(data).map_err(|e| decode_err!(e))? {
0 commit comments