diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2014-02-24 14:57:48 +0100 |
---|---|---|
committer | Paul Kocialkowski <contact@paulk.fr> | 2014-02-24 14:57:48 +0100 |
commit | 738b07dfd6ef709e0802a33ab3d66fdf22d3a68a (patch) | |
tree | e70d6e503cd83704308f64ff77c2dc459d7ed321 /include | |
parent | 121ae6d21c18dd79ed1dc7df4c86a681d70a337a (diff) | |
download | external_libsamsung-ipc-738b07dfd6ef709e0802a33ab3d66fdf22d3a68a.zip external_libsamsung-ipc-738b07dfd6ef709e0802a33ab3d66fdf22d3a68a.tar.gz external_libsamsung-ipc-738b07dfd6ef709e0802a33ab3d66fdf22d3a68a.tar.bz2 |
ipc_utils: Enumerate send first, then recv
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'include')
-rw-r--r-- | include/samsung-ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/samsung-ipc.h b/include/samsung-ipc.h index 669d4d8..7240472 100644 --- a/include/samsung-ipc.h +++ b/include/samsung-ipc.h @@ -113,10 +113,10 @@ const char *ipc_response_type_string(unsigned char type); const char *ipc_command_string(unsigned short command); void ipc_hex_dump(struct ipc_client *client, const void *data, size_t size); -void ipc_client_log_recv(struct ipc_client *client, struct ipc_message *message, - const char *prefix); void ipc_client_log_send(struct ipc_client *client, struct ipc_message *message, const char *prefix); +void ipc_client_log_recv(struct ipc_client *client, struct ipc_message *message, + const char *prefix); int ipc_fmt_header_setup(struct ipc_fmt_header *header, const struct ipc_message *message); |