summaryrefslogtreecommitdiffstats
path: root/server/demarshallers.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-06-22 10:53:24 +0200
committerAlexander Larsson <alexl@redhat.com>2010-06-22 10:53:24 +0200
commit9123e24e7b68ad36d4ac2b8f325ea249a5ea9ff5 (patch)
tree2af4db555c749d23e826b617d3f4fece63cd5c7a /server/demarshallers.h
parentae1de849acd1e58772dc3f318324ed936ff5f21c (diff)
downloadspice-9123e24e7b68ad36d4ac2b8f325ea249a5ea9ff5.tar.gz
spice-9123e24e7b68ad36d4ac2b8f325ea249a5ea9ff5.tar.xz
spice-9123e24e7b68ad36d4ac2b8f325ea249a5ea9ff5.zip
Add destructor for demarshalled messages
This is required because we don't want to free messages that just refer to the unparsed message (like SpiceMsgData). Also, in the future we might need it for more complex demarshalling.
Diffstat (limited to 'server/demarshallers.h')
-rw-r--r--server/demarshallers.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/demarshallers.h b/server/demarshallers.h
index e568cd0d..abe9dfab 100644
--- a/server/demarshallers.h
+++ b/server/demarshallers.h
@@ -17,7 +17,9 @@
#ifndef _H_DEMARSHAL
#define _H_DEMARSHAL
-typedef uint8_t * (*spice_parse_channel_func_t)(uint8_t *message_start, uint8_t *message_end, uint16_t message_type, int minor, size_t *size_out);
+typedef void (*message_destructor_t)(uint8_t *message);
+typedef uint8_t * (*spice_parse_channel_func_t)(uint8_t *message_start, uint8_t *message_end, uint16_t message_type, int minor,
+ size_t *size_out, message_destructor_t *free_message);
spice_parse_channel_func_t spice_get_client_channel_parser(uint32_t channel, unsigned int *max_message_type);