@@ -17,7 +17,7 @@ use std::borrow::Cow;
17
17
use std:: marker:: PhantomData ;
18
18
19
19
use bitflags:: bitflags;
20
- use ironrdp_core:: { assert_obj_safe, DecodeResult , EncodeResult , ReadCursor , WriteBuf , WriteCursor } ;
20
+ use ironrdp_core:: { assert_obj_safe, AsAny , DecodeResult , EncodeResult , ReadCursor , WriteBuf , WriteCursor } ;
21
21
use ironrdp_core:: { decode_cursor, encode_buf, Encode } ;
22
22
use ironrdp_pdu:: gcc:: { ChannelName , ChannelOptions } ;
23
23
use ironrdp_pdu:: { decode_err, mcs, PduResult } ;
@@ -55,8 +55,8 @@ impl<P: SvcProcessor> From<SvcProcessorMessages<P>> for Vec<SvcMessage> {
55
55
}
56
56
}
57
57
58
- /// Represents a message that, when encoded, forms a complete PDU for a given static virtual channel, sans any [`ChannelPduHeader`] .
59
- /// In other words, this marker should be applied to a message that is ready to be chunkified (have [`ChannelPduHeader`]s added,
58
+ /// Represents a message that, when encoded, forms a complete PDU for a given static virtual channel, sans any Channel PDU Header .
59
+ /// In other words, this marker should be applied to a message that is ready to be chunkified (have channel PDU headers added,
60
60
/// splitting it into chunks if necessary) and wrapped in MCS, x224, and tpkt headers for sending over the wire.
61
61
pub trait SvcEncode : Encode + Send { }
62
62
@@ -234,7 +234,7 @@ pub fn server_encode_svc_messages(
234
234
/// communication between client and server components over the main data connection.
235
235
/// There are at most 31 (optional) static virtual channels that can be created for a single connection, for a
236
236
/// total of 32 static channels when accounting for the non-optional I/O channel.
237
- pub trait SvcProcessor : ironrdp_core :: AsAny + fmt:: Debug + Send {
237
+ pub trait SvcProcessor : AsAny + fmt:: Debug + Send {
238
238
/// Returns the name of the static virtual channel corresponding to this processor.
239
239
fn channel_name ( & self ) -> ChannelName ;
240
240
0 commit comments