X-Git-Url: https://git.sesse.net/?p=rdpsrv;a=blobdiff_plain;f=rdpsrv.c;h=f417616724d502081eda6352e82c2721159dc318;hp=577f4a726aef0e7f7076db91c0b79907e2d6c1dc;hb=e0d6c6eb80e1c3ce8c95954002bb3c6642681758;hpb=908d0bab155aee5757f902486dd1bbba859637f4 diff --git a/rdpsrv.c b/rdpsrv.c index 577f4a7..f417616 100644 --- a/rdpsrv.c +++ b/rdpsrv.c @@ -66,12 +66,28 @@ int serve_client() mcs_send_connect_response(); for ( ;; ) { - short channel; - STREAM *s; - - /* receive ISO packets */ - s = mcs_recv(&channel); - if (s != NULL) - printf("Packet on ch %u\n", channel); + uint8 type, data_pdu_type; + STREAM s; + + while ((s = rdp_recv(&type)) != NULL) { + if (type != RDP_PDU_DATA) { + printf("Unknown RDP packet of type %u\n", type); + continue; + } + + in_uint8s(s, 8); /* shareid, pad, streamid, length */ + in_uint8(s, data_pdu_type); + in_uint8s(s, 3); /* compress_type, compress_len */ + + switch (data_pdu_type) { + case RDP_DATA_PDU_INPUT: + printf("Input PDU\n"); + break; + default: + printf("Unknown data PDU type %u\n", data_pdu_type); + }; + +// rdp_send_bitmap_update(); + } } }