X-Git-Url: https://git.sesse.net/?p=rdpsrv;a=blobdiff_plain;f=rdpsrv.c;h=e001cd24cd6e99672738ee2248a3ccf3ab544e2e;hp=59442eb6d767566519e77990ea548ccabd0b9ef1;hb=279bf2004603e87c531ac696ee7f88f9d4b8a754;hpb=24fc372e71f0e7fe4d4df9605bb5808b49a2f7ff diff --git a/rdpsrv.c b/rdpsrv.c index 59442eb..e001cd2 100644 --- a/rdpsrv.c +++ b/rdpsrv.c @@ -16,8 +16,10 @@ int main() { int server_sock = create_server_socket(); for ( ;; ) { - tcp_recv_connect(server_sock); + iso_recv_connect(server_sock); + printf("Got connection.\n"); serve_client(); + printf("Client closed.\n"); } } @@ -59,10 +61,31 @@ int create_server_socket() int serve_client() { + 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; + + 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); + }; + } } }