]> git.meshlink.io Git - meshlink/blobdiff - TODO
Immediately try connecting to the mesh after a succesful join.
[meshlink] / TODO
diff --git a/TODO b/TODO
index 4c4938e177b3a7478583abaf5cc60898819a142e..210c2a3f0419d51c50b584eabd82e7c1e9ff19b4 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,14 +1,24 @@
-TODO LIST
+TODO list for MeshLink
+----------------------
 
-* Stop using UDP source address as the identifier of the remote tinc daemon.
-  Use a unique number sent along with ANS_KEY.
+Refactoring: getting rid of global variables. Ultimately, no global variables
+should be used by the library (if possible). Tinc uses quite a lot of global
+variables. Refactoring this should go into steps:
 
-* Efficient multicast support.
+* Temporarily create a global meshlink_handle_t *mesh (done)
+* Move global variables to meshlink_handle_t (partially done)
+  - This means moving the declaration from the old .h file to meshlink_internal.h inside meshlink_handle_t
+  - Then doing sed 's/variable/mesh->&/g' *.c -i, and running make to check for any errors
 
-* Check if caches using hash tables speed up route.c.
+After that is completed:
 
-* Streamline the meta protocol. Use a binary format?
+* Add meshlink_handle_t *mesh as the first argument to functions that need it
 
-* Add (hooks for) a (graphical) frontend, like Pokey.
+Then:
 
-* Implement future goals as mentioned on the website.
+* Write code for all the functions in meshlink.c (some can be moved from libmeshlink.c)
+
+Other tasks:
+
+* Use snprintf() instead of xasprintf() when generating filenames
+  - Use char filename[PATH_MAX] on the stack. No more need to free().