updates
[silc.git] / TODO
1 TODO/bugs in Irssi SILC client
2 ==============================
3
4  o add --with-iconv
5
6  o Testing
7
8
9 TODO/bugs In SILC Client Library
10 ================================
11
12  o The PRIVATE_MESSAGE_KEY packet is not handled (it is implemented 
13    though).  This should be added and perhaps new client operation
14    should be added to notify application that it was received and
15    set the key only if application wishes to set (accept the key) it
16    (Do this to 0.9.x).
17
18  o Testing
19
20
21 TODO/bugs In SILC Server
22 ========================
23
24  o Implement the <Requested Attributes> and the Attribute Payload to
25    the core library, client and server.  Maybe implementations of
26    RFC 2425 and RFC 2426 to make it complete.
27
28  o Backup router related issues (Fix this to 0.9.x):
29
30         o Complete backup router support with standalone router
31
32         o Make the backup router work even if not all servers in the
33           cell use it.  When primary goes down, also those that are
34           not using it (are not connected locally) are signoffed.
35
36         o Configure use of backup router on normal server using HUP.
37
38         o Configure use of backup router on router using HUP.
39
40         o Rewrite SILC_LOG_DEBUG's in silcd/server_backup.c.
41
42         o Testing
43
44  o Add a timeout to handling incoming JOIN commands.  It should be 
45    enforced that JOIN command is executed only once in a second or two
46    seconds.  Now it is possible to accept n incoming JOIN commands
47    and process them without any timeouts.  THis must be employed because
48    each JOIN command will create and distribute the new channel key
49    to everybody on the channel (Fix this to 0.9.x).
50
51  o If client's public key is saved in the server (and doing public key
52    authentication) then the hostname and the username information could
53    be taken from the public key.  Should be a configuration option!
54
55  o Testing
56
57
58 TODO/bugs In SILC Libraries
59 ===========================
60
61  o WIN32 silc_net_create_connection_async does not work the same way
62    than on Unix.  Do it with threads on WIN32.  The function works but
63    is not actually async currently (Fix this to 0.9.x).
64
65
66 TODO in Toolkit Documentation
67 =============================
68
69 Stuff that needs to be done in order to complete the Tooolkit Reference
70 Manual (Do these to 0.9.x).
71
72  o ROBOdoc documenting missing from lib/silcutil/silcbuffer.h.
73
74  o ROBOdoc documenting missing from lib/silcutil/silcdlist.h.
75
76  o ROBOdoc documenting missing from lib/silcutil/silcfileutil.h.
77
78  o ROBOdoc documenting missing from lib/silccrypt/silccipher.h.
79
80  o ROBOdoc documenting missing from lib/silccrypt/silcpkcs.h.
81
82  o Write "Programming with Toolkit" document, describing how to build
83    Toolkit, how the build system works, where is everything, how
84    new (external) projects can be glued into Toolkit (use irssi as an
85    example), and how external projects can use Toolkit without gluing into
86    it (how to link etc), debugging, architecture, types, etc.
87
88  o Write "Platform Implementations" document to describe what platforms
89    Toolkit support, what has been implemented, what has not been, what
90    works differently etc.