Import release 0.1.5
[secnet] / TODO
... / ...
CommitLineData
1Makefile.in: autodep stuff
2
3dh.c: change format to binary from decimal string (without introducing
4endianness problems)
5
6netlink.c: investigate why 'default' routes don't appear to work
7(reported by JDA).
8
9slip.c: detect failure of userv-ipif to start. Restart userv-ipif to
10cope with soft routes? Restart it if it fails in use?
11
12tun.c: jdamery reports tun-old code works on Linux-2.2.
13Unresolved problem with ioctl(TUNSETIFF) sometimes returning EINVAL, seems
14to be related to early 2.4.x (x<=5) series kernels. 2.4.9 and above seem ok;
152.4.[678] untested.
16
17random.c: test
18
19rsa.c: check padding type, change format to binary from decimal string
20(without introducing endianness problems)
21
22site.c: the site_incoming() routing could be implemented much more
23cleanly using a table. There's still quite a lot of redundancy in this
24file. Abandon key exchanges when a bad packet is received. Modify
25protocol to include version fields, as described in the NOTES file.
26
27transform.c: see below
28
29sha1.c: test
30
31General: separate the transforms in transform.c into multiple parts,
32which can then be combined in the configuration file. Will allow the
33user to plug in different block ciphers, invent an authenticity-only
34mode, etc.
35
36Signal handling! Really just cope with SIGCHLD and SIGTERM. Possibly
37use SIGUSR1/2 for prodding things. Manage child processes properly.