More error printing to backup resuming code.
[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 Add support for the <Requested Attributes> in WHOIS.  Sending and
19    reception should be added.
20
21  o The PRIVATE_MESSAGE_KEY packet is not handled (it is implemented 
22    though).  This should be added and perhaps new client operation
23    should be added to notify application that it was received and
24    set the key only if application wishes to set (accept the key) it
25    (Do this to 0.9.x).
26
27  o Testing
28
29
30 TODO/bugs In SILC Server
31 ========================
32
33  o Still ghost clients in server signoff from server having secondary
34    interface.
35
36  o Normal server doesn't reconnect to backup router if connection was
37    lost.
38
39  o Add support for the <Requested Attributes> in WHOIS.  Sending and
40    reception, with clients and servers should be added.
41
42  o Backup router related issues:
43
44         o Add special handling in router and server for "connection
45           timed out" error.  Be optimistic.
46
47         o Testing
48
49  o Add a timeout to handling incoming JOIN commands.  It should be 
50    enforced that JOIN command is executed only once in a second or two
51    seconds.  Now it is possible to accept n incoming JOIN commands
52    and process them without any timeouts.  THis must be employed because
53    each JOIN command will create and distribute the new channel key
54    to everybody on the channel (Fix this to 0.9.x).
55
56  o If client's public key is saved in the server (and doing public key
57    authentication) then the hostname and the username information could
58    be taken from the public key.  Should be a configuration option!
59
60  o Testing
61
62
63 TODO/bugs In SILC Libraries
64 ===========================
65
66  o WIN32 silc_net_create_connection_async does not work the same way
67    than on Unix.  Do it with threads on WIN32.  The function works but
68    is not actually async currently (Fix this to 0.9.x).
69
70
71 TODO in Toolkit Documentation
72 =============================
73
74 Stuff that needs to be done in order to complete the Tooolkit Reference
75 Manual (Do these to 0.9.x).
76
77  o ROBOdoc documenting missing from lib/silcutil/silcbuffer.h.
78
79  o ROBOdoc documenting missing from lib/silcutil/silcdlist.h.
80
81  o ROBOdoc documenting missing from lib/silccrypt/silccipher.h.
82
83  o ROBOdoc documenting missing from lib/silccrypt/silcpkcs.h.
84
85  o Write "Programming with Toolkit" document, describing how to build
86    Toolkit, how the build system works, where is everything, how
87    new (external) projects can be glued into Toolkit (use irssi as an
88    example), and how external projects can use Toolkit without gluing into
89    it (how to link etc), debugging, architecture, types, etc.
90
91  o Write "Platform Implementations" document to describe what platforms
92    Toolkit support, what has been implemented, what has not been, what
93    works differently etc.
94
95  o Automatically generated index (would be nice).
96
97  o Searching of predefined keywords, exact and partial matches (would be 
98    nice).