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