Improved UTF-8 encoding and decoding, improved toolkit doc,
[silc.git] / TODO
1 TODO/bugs in Irssi SILC client
2 ==============================
3
4  o Do UTF-8 decoding on non-utf terminals with iconv() if available.
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 Channel user mode changes are notified unnecessarely when
31           switching to backup router on router crash.
32
33  o Add a timeout to handling incoming JOIN commands.  It should be 
34    enforced that JOIN command is executed only once in a second or two
35    seconds.  Now it is possible to accept n incoming JOIN commands
36    and process them without any timeouts.  THis must be employed because
37    each JOIN command will create and distribute the new channel key
38    to everybody on the channel (Fix this to 0.9.x).
39
40  o If client's public key is saved in the server (and doing public key
41    authentication) then the hostname and the username information could
42    be taken from the public key.  Should be a configuration option!
43
44  o Testing
45
46
47 TODO/bugs In SILC Libraries
48 ===========================
49
50  o Remove ../lib/contrib/ from includes and use relative path instead.
51
52  o Remove default irssi/ silcd/ compilation on toolkit, add maybe
53    --without-silcd and --without-irssi.
54
55  o WIN32 silc_net_create_connection_async does not work the same way
56    than on Unix.  Do it with threads on WIN32.  The function works but
57    is not actually async currently (Fix this to 0.9.x).
58
59
60 TODO in Toolkit Documentation
61 =============================
62
63 Stuff that needs to be done in order to complete the Tooolkit Reference
64 Manual (Do these to 0.9.x).
65
66  o ROBOdoc documenting missing from lib/silcutil/silcbuffer.h.
67
68  o ROBOdoc documenting missing from lib/silcutil/silcdlist.h.
69
70  o ROBOdoc documenting missing from lib/silcutil/silcfileutil.h.
71
72  o ROBOdoc documenting missing from lib/silccrypt/silccipher.h.
73
74  o ROBOdoc documenting missing from lib/silccrypt/silcpkcs.h.
75
76  o Write "Programming with Toolkit" document, describing how to build
77    Toolkit, how the build system works, where is everything, how
78    new (external) projects can be glued into Toolkit (use irssi as an
79    example), and how external projects can use Toolkit without gluing into
80    it (how to link etc), debugging, architecture, types, etc.
81
82  o Write "Platform Implementations" document to describe what platforms
83    Toolkit support, what has been implemented, what has not been, what
84    works differently etc.