Buffer overflow fix.
[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 Resolve local hostname info using IDENTIFY and not use the local
15    clinet resolving (ie. update your local info in IDENTIFY reply).
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 Implement the <Requested Attributes> and the Attribute Payload to
30    the core library, client and server.  Maybe implementations of
31    RFC 2425 and RFC 2426 to make it complete.
32
33  o Backup router related issues:
34
35         o Add special handling in router and server for "connection
36           timed out" error.  Be optimistic.
37
38         o Testing
39
40  o Close unconfigured client connections in rehash.
41
42  o Add a timeout to handling incoming JOIN commands.  It should be 
43    enforced that JOIN command is executed only once in a second or two
44    seconds.  Now it is possible to accept n incoming JOIN commands
45    and process them without any timeouts.  THis must be employed because
46    each JOIN command will create and distribute the new channel key
47    to everybody on the channel (Fix this to 0.9.x).
48
49  o If client's public key is saved in the server (and doing public key
50    authentication) then the hostname and the username information could
51    be taken from the public key.  Should be a configuration option!
52
53  o Testing
54
55
56 TODO/bugs In SILC Libraries
57 ===========================
58
59  o Bit losing fixes to be done in SILC RNG.  Use GET32_MSB and PUT32_MSB
60    macros when doing conversions from types.
61
62  o WIN32 silc_net_create_connection_async does not work the same way
63    than on Unix.  Do it with threads on WIN32.  The function works but
64    is not actually async currently (Fix this to 0.9.x).
65
66
67 TODO in Toolkit Documentation
68 =============================
69
70 Stuff that needs to be done in order to complete the Tooolkit Reference
71 Manual (Do these to 0.9.x).
72
73  o ROBOdoc documenting missing from lib/silcutil/silcbuffer.h.
74
75  o ROBOdoc documenting missing from lib/silcutil/silcdlist.h.
76
77  o ROBOdoc documenting missing from lib/silcutil/silcfileutil.h.
78
79  o ROBOdoc documenting missing from lib/silccrypt/silccipher.h.
80
81  o ROBOdoc documenting missing from lib/silccrypt/silcpkcs.h.
82
83  o Write "Programming with Toolkit" document, describing how to build
84    Toolkit, how the build system works, where is everything, how
85    new (external) projects can be glued into Toolkit (use irssi as an
86    example), and how external projects can use Toolkit without gluing into
87    it (how to link etc), debugging, architecture, types, etc.
88
89  o Write "Platform Implementations" document to describe what platforms
90    Toolkit support, what has been implemented, what has not been, what
91    works differently etc.
92
93  o Automatically generated index (would be nice).
94
95  o Searching of predefined keywords, exact and partial matches (would be 
96    nice).