diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-08 03:58:00 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-08 03:58:08 +0200 |
commit | fbd127113629a1eed72d32ffb84572b0d40d8154 (patch) | |
tree | 5d1c4cdf7cf4260943dcd2f5aacae333b3d85e47 /src/mds-server/client.h | |
parent | split up mds-server structs into their own .h-files and add marshal functions (diff) | |
download | mds-fbd127113629a1eed72d32ffb84572b0d40d8154.tar.gz mds-fbd127113629a1eed72d32ffb84572b0d40d8154.tar.bz2 mds-fbd127113629a1eed72d32ffb84572b0d40d8154.tar.xz |
use the data structure marshallers
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/mds-server/client.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/mds-server/client.h b/src/mds-server/client.h index a63f2b6..a795c84 100644 --- a/src/mds-server/client.h +++ b/src/mds-server/client.h @@ -103,7 +103,7 @@ typedef struct client size_t client_marshal_size(const client_t* restrict this) __attribute__((pure)); /** - * Marshals an client information + * Marshals client information * * @param this The client information * @param data Output buffer for the marshalled data @@ -112,7 +112,7 @@ size_t client_marshal_size(const client_t* restrict this) __attribute__((pure)); size_t client_marshal(const client_t* restrict this, char* restrict data); /** - * Unmarshals an client information + * Unmarshals client information * * @param this Memory slot in which to store the new client information * @param data In buffer with the marshalled data @@ -121,6 +121,14 @@ size_t client_marshal(const client_t* restrict this, char* restrict data); */ size_t client_unmarshal(client_t* restrict this, char* restrict data); +/** + * Pretend to unmarshal client information + * + * @param data In buffer with the marshalled data + * @return The number of read bytes + */ +size_t client_unmarshal_skip(char* restrict data) __attribute__((pure)); + #endif |