X-Git-Url: https://git.sesse.net/?p=rdpsrv;a=blobdiff_plain;f=rdpsrv.c;h=f417616724d502081eda6352e82c2721159dc318;hp=e321ba6342c3b8806fc57bb9f6c4bcabda2c47eb;hb=e0d6c6eb80e1c3ce8c95954002bb3c6642681758;hpb=48580be79f1c97788f7f3a92b9791056b9773058 diff --git a/rdpsrv.c b/rdpsrv.c index e321ba6..f417616 100644 --- a/rdpsrv.c +++ b/rdpsrv.c @@ -61,14 +61,33 @@ int create_server_socket() int serve_client() { - mcs_recv_connect_initial(); + if (!mcs_recv_connect_initial()) + error("MCS_CONNECT_INITIAL recv failed"); + mcs_send_connect_response(); for ( ;; ) { - short channel; - - /* receive ISO packets */ - mcs_recv(&channel); + uint8 type, data_pdu_type; + STREAM s; - printf("Packet on ch %u\n", channel); + 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(); + } } }