]> git.meshlink.io Git - meshlink/commitdiff
Clean up UTCP connections when stopping the mesh.
authorGuus Sliepen <guus@meshlink.io>
Sat, 1 Nov 2014 14:57:42 +0000 (15:57 +0100)
committerGuus Sliepen <guus@meshlink.io>
Sat, 1 Nov 2014 15:06:42 +0000 (16:06 +0100)
src/meshlink.h
src/node.c

index 6a83f6c60b41772c8ea529675ed737e9f45fa6a9..5777301aebdf58fe9bb599f43a26727d3fa2dff3 100644 (file)
@@ -180,6 +180,7 @@ extern bool meshlink_start(meshlink_handle_t *mesh);
  *  close all sockets, and shut down its own thread.
  *
  *  This function always succeeds. It is allowed to call meshlink_stop() even if MeshLink is already stopped or has never been started.
+ *  Channels that are still open will remain valid, but any communication via channels will stop as well.
  *
  *  @param mesh     A handle which represents an instance of MeshLink.
  */
@@ -187,7 +188,7 @@ extern void meshlink_stop(meshlink_handle_t *mesh);
 
 /// Close the MeshLink handle.
 /** This function calls meshlink_stop() if necessary,
- *  and frees the struct meshlink_handle and all associacted memory allocated by MeshLink.
+ *  and frees the struct meshlink_handle and all associacted memory allocated by MeshLink, including all channels.
  *  Afterwards, the handle and any pointers to a struct meshlink_node or struct meshlink_channel are invalid.
  *
  *  It is allowed to call this function at any time on a valid handle, except inside callback functions.
index c6213a17016b61d755973be24a0d0518cf8e7630..b838c5bee4eba1a5c51afccb560878f7c21dc435 100644 (file)
@@ -71,14 +71,11 @@ void free_node(node_t *n) {
        if(n->mtutimeout.cb)
                abort();
 
-       if(n->hostname)
-               free(n->hostname);
-
-       if(n->name)
-               free(n->name);
+       free(n->hostname);
+       free(n->name);
+       free(n->late);
 
-       if(n->late)
-               free(n->late);
+       utcp_exit(n->utcp);
 
        free(n);
 }