@@ -1026,7 +1026,7 @@ where
10261026 } ;
10271027
10281028 debug_assert ! ( connector. next_pdu_hint( ) . is_none( ) ) ;
1029- let ( rdcleanpath_req , mut connector) : ( ironrdp_rdcleanpath:: RDCleanPathPdu , Box < dyn ConnectorCore > ) =
1029+ let ( rdcleanpath_request , mut connector) : ( ironrdp_rdcleanpath:: RDCleanPathPdu , Box < dyn ConnectorCore > ) =
10301030 if let Some ( PreconnectionBlobPayload :: VmConnect ( vm_id) ) = pcb {
10311031 let rdcleanpath_req = ironrdp_rdcleanpath:: RDCleanPathPdu :: new_request (
10321032 None ,
@@ -1059,26 +1059,26 @@ where
10591059 ( rdcleanpath_req, Box :: new ( connector) as Box < dyn ConnectorCore > )
10601060 } ;
10611061
1062- let rdcleanpath_req = rdcleanpath_req
1062+ let rdcleanpath_request = rdcleanpath_request
10631063 . to_der ( )
10641064 . map_err ( |e| connector:: custom_err!( "RDCleanPath request encode" , e) ) ?;
10651065
10661066 framed
1067- . write_all ( & rdcleanpath_req )
1067+ . write_all ( & rdcleanpath_request )
10681068 . await
10691069 . map_err ( |e| connector:: custom_err!( "couldn’t write RDCleanPath request" , e) ) ?;
10701070
1071- let rdcleanpath_res = framed
1071+ let rdcleanpath_result = framed
10721072 . read_by_hint ( & RDCLEANPATH_HINT )
10731073 . await
10741074 . map_err ( |e| connector:: custom_err!( "read RDCleanPath request" , e) ) ?;
10751075
1076- let rdcleanpath_res = ironrdp_rdcleanpath:: RDCleanPathPdu :: from_der ( & rdcleanpath_res )
1076+ let rdcleanpath_result = ironrdp_rdcleanpath:: RDCleanPathPdu :: from_der ( & rdcleanpath_result )
10771077 . map_err ( |e| connector:: custom_err!( "RDCleanPath response decode" , e) ) ?;
10781078
1079- debug ! ( message = ?rdcleanpath_res , "Received RDCleanPath PDU" ) ;
1079+ debug ! ( message = ?rdcleanpath_result , "Received RDCleanPath PDU" ) ;
10801080
1081- let ( x224_connection_response, server_cert_chain) = match rdcleanpath_res
1081+ let ( x224_connection_response, server_cert_chain) = match rdcleanpath_result
10821082 . into_enum ( )
10831083 . map_err ( |e| connector:: custom_err!( "invalid RDCleanPath PDU" , e) ) ?
10841084 {
0 commit comments