Update the todo list.
authorAndreas Schneider <asn@samba.org>
Wed, 28 May 2014 08:04:04 +0000 (10:04 +0200)
committerMichael Adam <obnox@samba.org>
Sun, 1 Jun 2014 08:03:05 +0000 (10:03 +0200)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
TODO
src/socket_wrapper.c

diff --git a/TODO b/TODO
index 205cfaf3ca6f5dce4ff171f52215e0213d08a1a4..fe05c75faaf4604130904a8fba7a718faada0362 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,10 +1,14 @@
 TODO
 =====
 
+This is the TODO list of this project. It should give you some hints of things
+which need to be implemented. If you can spend some time on this project, then
+look at the list below.
+
+
 Library:
 ---------
 
-* Add IP_PKTINFO support for sendmsg/recvmsg.
 * Add support for fd passing in sendmsg/recvmsg.
   Scenario:
   We accept a connection from a client and need to pass the fd to another
@@ -12,6 +16,7 @@ Library:
   to the child first and set it up there.
   Or do it like swrap_accept() and call getpeername() and getsockname().
 * Add support for threading.
+* Use realpath() in socket_wrapper_dir().
 
 Testing:
 ---------
index 523b32a780e2b719d9e7f8f22a6ae7627e828d31..621a3e7d641d5c7945331b2de4ff5c5e14afb61e 100644 (file)
@@ -853,6 +853,7 @@ static const char *socket_wrapper_dir(void)
        if (s == NULL) {
                return NULL;
        }
+       /* TODO use realpath(3) here, when we add support for threads */
        if (strncmp(s, "./", 2) == 0) {
                s += 2;
        }