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