diff options
author | Arnon Gilboa <agilboa@redhat.com> | 2010-08-23 16:03:47 +0300 |
---|---|---|
committer | Alon Levy <alevy@redhat.com> | 2010-08-23 18:54:25 +0300 |
commit | 81cd5620d2e5046cb863d0bc584049b6a760b209 (patch) | |
tree | afba88689bb105a9f29eac3aafeae4ddc82e8875 /common | |
parent | feab0571017629960af5fc46cbaf0582f772e442 (diff) |
vdservice/vdagent: fixes leading to clipboard (aka large) message handling
-add VDAgent::dispatch_message()
-in VDAgent::read_completion() handle multi-chunk msgs
-fix chunk size bug in VDService::handle_pipe_data()
-add size to VDPipeMessage
Diffstat (limited to 'common')
-rw-r--r-- | common/vdcommon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/vdcommon.h b/common/vdcommon.h index 8d4b4de..f097de4 100644 --- a/common/vdcommon.h +++ b/common/vdcommon.h @@ -44,6 +44,7 @@ enum { typedef __declspec (align(1)) struct VDPipeMessage { uint32_t type; uint32_t opaque; + uint32_t size; uint8_t data[0]; } VDPipeMessage; |