updates.
[silc.git] / TODO
1 TODO/bugs in Irssi SILC client
2 ==============================
3
4  o UTF-8 encode/decode WHOIS userinfos, topic, etc.
5
6  o Add STATS.
7
8  o Testing
9
10
11 TODO/bugs In SILC Client Library
12 ================================
13
14  o Add support for the <Requested Attributes> in WHOIS.  Sending and
15    reception should be added.
16
17  o The PRIVATE_MESSAGE_KEY packet is not handled (it is implemented 
18    though).  This should be added and perhaps new client operation
19    should be added to notify application that it was received and
20    set the key only if application wishes to set (accept the key) it
21    (Do this to 0.9.x).
22
23  o Testing
24
25
26 TODO/bugs In SILC Server
27 ========================
28
29  o Backup router can accidently free its own id_entry and ID?  Could happen
30    when some server is connecting and connecting fails (like too many
31    connections, etc).  Some weird crashes relating to this occurred.
32
33  o Add support for the <Requested Attributes> in WHOIS.  Sending and
34    reception, with clients and servers should be added.
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 Close unconfigured client connections in rehash.  When client
44    connections are removed from the config file and rehashed the 
45    connections matching those removed, should be closed.
46
47  o Add a timeout to handling incoming JOIN commands.  It should be 
48    enforced that JOIN command is executed only once in a second or two
49    seconds.  Now it is possible to accept n incoming JOIN commands
50    and process them without any timeouts.  THis must be employed because
51    each JOIN command will create and distribute the new channel key
52    to everybody on the channel (Fix this to 0.9.x).
53
54  o If client's public key is saved in the server (and doing public key
55    authentication) then the hostname and the username information could
56    be taken from the public key.  Should be a configuration option!
57
58  o Testing
59
60
61 TODO/bugs In SILC Libraries
62 ===========================
63
64  o WIN32 silc_net_create_connection_async does not work the same way
65    than on Unix.  Do it with threads on WIN32.  The function works but
66    is not actually async currently (Fix this to 0.9.x).
67
68
69 TODO in Toolkit Documentation
70 =============================
71
72 Stuff that needs to be done in order to complete the Tooolkit Reference
73 Manual (Do these to 0.9.x).
74
75  o ROBOdoc documenting missing from lib/silcutil/silcbuffer.h.
76
77  o ROBOdoc documenting missing from lib/silcutil/silcdlist.h.
78
79  o ROBOdoc documenting missing from lib/silcutil/silcfileutil.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).