From: Guus Sliepen Date: Tue, 17 Jun 2014 17:57:58 +0000 (+0200) Subject: Update TODO list. X-Git-Url: http://git.meshlink.io/?p=meshlink;a=commitdiff_plain;h=f882e43ac21968705598e67db7cd2d79511b3466 Update TODO list. --- diff --git a/TODO b/TODO index 1eb11239..a7d96da6 100644 --- a/TODO +++ b/TODO @@ -1,21 +1,9 @@ TODO list for MeshLink ---------------------- -* Check for remaining global variables and get rid of them. - -* Write code for all the functions in meshlink.c (some can be moved from libmeshlink.c) - Current stubs that need implementation: - - meshlink_export() - - meshlink_import() - - meshlink_blacklist() - -* Implement a simple single producer, single consumer queue for communication - between the application and library threads. It is possible to do this without locks. - -* Provide thread-safety to functions that return pointers to meshlink_node_t. - - The mesh->nodes tree can be updated by the library thread at any time, - so it must be protected by a mutex or rwlock. - - Individial node_t's must never be freed or moved except in meshlink_close(). +* Write meshlink_sign() and meshlink_verify(). These should just call + ecdsa_sign() and _verify(), with mesh->self->connection->ecdsa as the key for + _sign(), and node->ecdsa for _verify()? * meshlink_join(): - add checks that we only join another mesh if we did not connect to any other node before. @@ -31,10 +19,6 @@ TODO list for MeshLink * Fill in mesh->errno whenever an error happens (= when a function returns false or NULL). -* Make the headers work correctly in a C++ environment. - -* Add a header-only C++ wrapper API. - * Add autoconf/automake stuff to call Doxygen. * Write a test suite for the library. @@ -51,3 +35,27 @@ TODO list for MeshLink * Add a "channel" library to MeshLink. - Support multiple TCP- and UDP-like streams between two nodes. + +Mostly done: +------------ + +* Check for remaining global variables and get rid of them. + +* Write code for all the functions in meshlink.c (some can be moved from libmeshlink.c) + Current stubs that need implementation: + - meshlink_export() + - meshlink_import() + - meshlink_blacklist() + +* Implement a simple single producer, single consumer queue for communication + between the application and library threads. It is possible to do this without locks. + +* Provide thread-safety to functions that return pointers to meshlink_node_t. + - The mesh->nodes tree can be updated by the library thread at any time, + so it must be protected by a mutex or rwlock. + - Individial node_t's must never be freed or moved except in meshlink_close(). + +* Make the headers work correctly in a C++ environment. + +* Add a header-only C++ wrapper API. +