Added support for saving requested attributes.
[silc.git] / TODO
1 TODO/bugs in Irssi SILC client
2 ==============================
3
4  o Server password is not used at all.  It is not possible to automize
5    the password authentication currently.  The silc_get_auth_method
6    in irssi/src/silc/core/client_ops.c should find the connection's
7    password, only if not found then continue resolving the auth method.
8    Alternatively it can do it after resolving in the callback.
9
10  o UTF-8 encode/decode WHOIS userinfos, topic, etc.
11
12  o Testing
13
14
15 TODO/bugs In SILC Client Library
16 ================================
17
18  o The PRIVATE_MESSAGE_KEY packet is not handled (it is implemented 
19    though).  This should be added and perhaps new client operation
20    should be added to notify application that it was received and
21    set the key only if application wishes to set (accept the key) it
22    (Do this to 0.9.x).
23
24  o Testing
25
26
27 TODO/bugs In SILC Server
28 ========================
29
30  o If client's public key is saved in the server (and doing public key
31    authentication) then the hostname and the username information could
32    be taken from the public key.  Should be a configuration option!
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 Add a timeout to handling incoming JOIN commands.  It should be 
42    enforced that JOIN command is executed only once in a second or two
43    seconds.  Now it is possible to accept n incoming JOIN commands
44    and process them without any timeouts.  THis must be employed because
45    each JOIN command will create and distribute the new channel key
46    to everybody on the channel (Fix this to 0.9.x).
47
48  o Testing
49
50
51 TODO/bugs In SILC Libraries
52 ===========================
53
54  o WIN32 silc_net_create_connection_async does not work the same way
55    than on Unix.  Do it with threads on WIN32.  The function works but
56    is not actually async currently (Fix this to 0.9.x).
57
58
59 TODO in Toolkit Documentation
60 =============================
61
62 Stuff that needs to be done in order to complete the Tooolkit Reference
63 Manual (Do these to 0.9.x).
64
65  o ROBOdoc documenting missing from lib/silcutil/silcbuffer.h.
66
67  o ROBOdoc documenting missing from lib/silcutil/silcdlist.h.
68
69  o ROBOdoc documenting missing from lib/silccrypt/silccipher.h.
70
71  o ROBOdoc documenting missing from lib/silccrypt/silcpkcs.h.
72
73  o Write "Programming with Toolkit" document, describing how to build
74    Toolkit, how the build system works, where is everything, how
75    new (external) projects can be glued into Toolkit (use irssi as an
76    example), and how external projects can use Toolkit without gluing into
77    it (how to link etc), debugging, architecture, types, etc.
78
79  o Write "Platform Implementations" document to describe what platforms
80    Toolkit support, what has been implemented, what has not been, what
81    works differently etc.
82
83  o Automatically generated index (would be nice).
84
85  o Searching of predefined keywords, exact and partial matches (would be 
86    nice).