The Early User Authorization Result PDU is sent from server to client and is used to convey authorization information to the client. This PDU is only sent by the server if the client advertised support for it by specifying the PROTOCOL_HYBRID_EX (0x00000008) flag in the requestedProtocols field of the RDP Negotiation Request structure and it MUST be sent immediately after the CredSSP handshake has completed.
Inheritance: RdpbcgrServerPdu
Exemplo n.º 1
0
 public override StackPacket Clone()
 {
     Early_User_Authorization_Result_PDU resultPdu = new Early_User_Authorization_Result_PDU();
     resultPdu.authorizationResult = this.authorizationResult;
     return resultPdu;
 }