]> git.sesse.net Git - rdpsrv/blobdiff - rdpsrv.c
Barely recognize some RDP data PDUs.
[rdpsrv] / rdpsrv.c
index c5b4169403f7ef271fa7f237e52257bae1925f28..e001cd24cd6e99672738ee2248a3ccf3ab544e2e 100644 (file)
--- a/rdpsrv.c
+++ b/rdpsrv.c
@@ -66,11 +66,26 @@ int serve_client()
        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);
+                       };
+               }
        }
 }