diff --git a/cliprdr.c b/cliprdr.c index 2c0cc6f..1713e5d 100644 --- a/cliprdr.c +++ b/cliprdr.c @@ -137,6 +137,8 @@ cliprdr_process(STREAM s) case CLIPRDR_DATA_RESPONSE: ui_clip_handle_data(data, length); break; + case 7: /* TODO: W2K3 SP1 sends this on connect with a value of 1 */ + break; default: unimpl("CLIPRDR packet type %d\n", type); } diff --git a/rdp5.c b/rdp5.c index 17f0a36..554214b 100644 --- a/rdp5.c +++ b/rdp5.c @@ -103,6 +103,8 @@ rdp5_process(STREAM s) case 5: ui_set_null_cursor(); break; + case 6: /* TODO: W2K3 SP1 sends this on connect */ + break; case 8: in_uint16_le(ts, x); in_uint16_le(ts, y);