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