summaryrefslogtreecommitdiff
path: root/include/ouroboros/sockets.h
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-03-17 10:39:37 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-03-17 10:39:37 +0100
commit7747528435d77ad055a5c3124a89717e42807b9a (patch)
tree1b13d3833029a2bdab59ad287fa44eb762f82994 /include/ouroboros/sockets.h
parent788414c1a728440e25b8a7428af294189e3b70ca (diff)
downloadouroboros-7747528435d77ad055a5c3124a89717e42807b9a.tar.gz
ouroboros-7747528435d77ad055a5c3124a89717e42807b9a.zip
lib, irmd: Fix memleaks
This removes some memleaks present in the sockets layer. It also fixes the bad initialization of the difs_size param in the irm_msg.
Diffstat (limited to 'include/ouroboros/sockets.h')
-rw-r--r--include/ouroboros/sockets.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ouroboros/sockets.h b/include/ouroboros/sockets.h
index b34537a7..871e3c36 100644
--- a/include/ouroboros/sockets.h
+++ b/include/ouroboros/sockets.h
@@ -51,7 +51,9 @@ struct irm_msg {
int client_socket_open(char * file_name);
int server_socket_open(char * file_name);
+/* Caller has to free the buffer */
buffer_t * serialize_irm_msg(struct irm_msg * msg);
+/* Caller has to free all the allocated fields in the message */
struct irm_msg * deserialize_irm_msg(buffer_t * data);
#endif