From af40930bebe0322d5876bda2aa36598e1bae2056 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 28 May 2014 10:04:04 +0200 Subject: Update the todo list. Signed-off-by: Andreas Schneider Reviewed-by: Michael Adam --- TODO | 7 ++++++- src/socket_wrapper.c | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/TODO b/TODO index 205cfaf..fe05c75 100644 --- 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: --------- diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c index 523b32a..621a3e7 100644 --- a/src/socket_wrapper.c +++ b/src/socket_wrapper.c @@ -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; } -- cgit