X-Git-Url: https://git.sesse.net/?p=rdpsrv;a=blobdiff_plain;f=rdp5.c;h=f84b8882146b14edf8b3cde385669adbef77196b;hp=ac544b882b0e8a8186268364c4ef5a2ac3650967;hb=634d61e2e7f380a8c695cc49323f975393b604c8;hpb=40cde82f161a4891fb396e4f73087a9de7a5a978 diff --git a/rdp5.c b/rdp5.c index ac544b8..f84b888 100644 --- a/rdp5.c +++ b/rdp5.c @@ -88,6 +88,11 @@ rdp5_process(STREAM s, BOOL encryption) switch (type) { + case 16 ... 31: + // unknown, but looks like some sort of + // "count" of how many packets there are + printf("Unimplemented RDP5 opcode (count?) %d, skipping\n", type); + break; case 32: { // mouse listen_on_vnc = 1; uint16 device_flags, x, y; @@ -119,7 +124,7 @@ rdp5_process(STREAM s, BOOL encryption) break; } default: - printf("Unimplemented RDP5 opcode %d (len=%u)\n", type, length); + printf("Unimplemented RDP5 opcode %d\n", type); return; } }