Bump version to 1.1.3
[slow/socket_wrapper.git] / TODO
1 TODO
2 =====
3
4 This is the TODO list of this project. It should give you some hints of things
5 which need to be implemented. If you can spend some time on this project, then
6 look at the list below.
7
8
9 Library:
10 ---------
11
12 * Add support for fd passing in sendmsg/recvmsg.
13   Scenario:
14   We accept a connection from a client and need to pass the fd to another
15   child we forked. socket_wrapper then needs to send the 'struct socket_info'
16   to the child first and set it up there.
17   Or do it like swrap_accept() and call getpeername() and getsockname().
18 * Add support for threading.
19 * Use realpath() in socket_wrapper_dir().
20
21 Testing:
22 ---------
23 * Add a test to make sure detect stale file descriptors.
24 * Add a test for sento() to broadcast 255.255.255.255.
25 * Add a test to check that read/readv/send/ only work on connected sockets.
26 * Add unit tests for conversion functions like convert_in_un_remote().
27 * Add threaded tests.