updates.
[silc.git] / CHANGES
1 Sun Sep 16 12:32:58 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
2
3         * Assure that the packet length digged from the actual packet
4           is something sensible in the silc_packet_decrypt_rest_special
5           in lib/silccrypt/silcpacket.c.
6
7         * Free and NULL the allocated pointer in silc_hmac_alloc if
8           the HMAC allocation fails.  The affected file is
9           lib/silccrypt/silchmac.c.
10
11         * Print the selected security properties to the log files in
12           the server.  Affected file silcd/protocol.c.
13
14 Sat Sep 15 13:29:17 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
15
16         * Check that the public key exists in the GETKEY command before
17           trying to encode it.  Affected file silcd/command.c.
18
19         * Print some notifications on received public keys with GETKEY
20           command in the Irssi SILC Client.  Affected files are
21           irssi/src/fe-common/silc/module-formats.[ch],
22           irssi/src/silc/core/client_ops.c.
23
24         * Use IDENTIFY command to resolve the server information in the
25           GETKEY command instead of INFO command.  Affected file
26           lib/silcclient/command.c.
27
28         * All command reply functions in the client library now calls
29           the pending command reply callbacks even if an error has
30           occurred.  The server has done this a long time and now it was
31           time to move the client library to this as well.  Now all
32           errors can be delivered back to the pending command reply
33           callbacks if necessary.  Affected files are
34           lib/silcclient/command[_reply].[ch].
35
36         * Change the nickname on disconnection back to the username
37           because in reconnect the server will enforce it to it anyway.
38           Affected file irssi/src/silc/core/silc-servers.c.
39
40         * Fixed a config file parsing bug in the Irssi SILC client.
41           Affected file irssi/src/silc/core/clientconfig.c.
42
43 Thu Sep 13 23:11:18 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
44
45         * When printing the channel mode on JOIN, verify that the
46           channel key and channel's HMAC are valid.  Affected file
47           irssi/src/silc/core/client_ops.c.
48
49 Thu Sep 13 20:24:52 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
50
51         * Added defines SILC_DEFAULT_CIPHER, SILC_DEFAULT_HMAC,
52           SILC_DEFAULT_HASH and SILC_DEFAULT_PKCS in the file
53           lib/silccrypt/[silccipher.h|silchmac.h|silchash.h|silcpkcs.h].
54
55         * Removed channel key rekey task deleting from the function
56           silc_server_save_channel_key.  Affected file silcd/server.c.
57           Added explicit timeout task context instead that is used to   
58           delete the task if we are registering a new task before the
59           new task has elapsed.
60
61         * When channel key rekey occurs the client library now saves
62           the old channel key for a short period of time (10 seconds) and
63           is able to use it in case some is still sending channel
64           messages encrypted with the old key after the rekey.  Affected
65           file lib/silcclient/[idlist.h|client_channel.c].
66
67 Sun Sep  9 15:49:16 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
68
69         * Added check to the silc_server_new_id_real to not accept
70           new ID if it is the sender's own ID.  Affected file is
71           silcd/packet_receive.c.
72
73         * Assure that we do not announce ourself or the one we've
74           sending our announcements when we're router and are announcing
75           servers to our primary router.  Affected file silcd/server.c.
76
77         * Fixed silc_server_command_identify_check_client to assemble
78           correct WHOIS packet.  It send corrupted WHOIS packet and
79           caused problem with router to router connections.  Affected
80           file silcd/command.c.
81
82           Fixed also silc_server_command_whois_check the same way
83           as for the IDENTIFY command.
84
85         * Added new SilcIDListStatus to the server in the SilcIDListData
86           structure.   The status now includes the current status of
87           the entry (like registered, resolved etc.).  Affected file
88           silcd/idlist.[ch].  Defined a bunch of different status types
89           as well.  This replaced the old boolean registered field as well.
90
91           Added resolve_cmd_ident field to the SilcClientEntry structure
92           too so that if the entry is for example being resolved so 
93           another command may attach to the same pending command reply
94           without requiring to resolve the same entry again.  This concept
95           should optimize the WHOIS and the IDENTIFY resolving under
96           heavy load by taking away unnecessary resolving for entries
97           that are being resolved already.
98
99           Added support for adding multiple pending commands for one
100           command idenfier.  Affected file silcd/command[_reply].[ch].
101
102         * Fixed WHOIS and IDENTIFY save to remove the cache entry
103           before deleting the data.  Otherwise the hash table will have
104           freed data in comparison functions.  Affected file is
105           silcd/command_reply.c.
106
107         * Fixed silc_idlist_replace_client_id to add the new entry to
108           the cache with NULL nickname.  Otherwise there will be invalid
109           memory as the nickname after the nickname is freed.  Affected
110           file silcd/packet_receive.c.
111
112         * Fixed the silc_idlist_get_clients_by_hash.  The entries was
113           saved into wrong slots because the previous number of entries
114           was not taken into account.  Affected file silcd/idlist.c.
115           Fixed same thing in silc_idlist_get_clients_by_nickname too.
116
117         * If we are router and we receive JOIN notify to a channel that
118           does not have any users then notified client is marked as the
119           channel founder, as it is it.  The affected file is
120           silcd/packet_receive.c
121
122         * Added to the extended hash table API's table_del_*ext functions
123           the destructor as argument too, so that the caller can decide
124           which destructor to use or whether to use destructor at all.
125           Affected file lib/silcutil/silchashtable.[ch].
126
127         * Fixed ID Cache purging.  It actually deleted the entries from
128           the hash table after the data was freed.  The hash table ended
129           up comparing freed memory.  The affected file is
130           lib/silccore/silcidcache.c.
131
132 Sat Sep  8 10:22:10 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
133
134         * Fixed Irssi SILC client's KILL command's HELP syntax.
135
136         * The USERS command now resolves the detailed user information
137           if the userinfo field is missing.  Affected file is
138           lib/silcclient/command_reply.c.
139
140         * Do not print error in silc_file_read if the read file does
141           not exist.  Just silently return NULL.  Affected file is
142           lib/silcutil/silcutil.c.
143
144         * Fixed the silc_log_output to not wine about NULL filename
145           and to not create some bogus " " filename.  Affected file is
146           lib/silcutil/silclog.c.
147
148 Fri Sep  7 22:16:38 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
149
150         * Fixed various printing bugs on the user interface in the
151           Irssi SILC Client.  Minor changes that were forgotten from
152           the release.
153
154 Fri Sep  7 17:28:37 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
155
156         * Fixed the configure.in.pre and the compilation and distribution
157           environment to support the new autoconf 2.52.  That version is
158           now required to compile the CVS trunk.
159
160 Thu Sep  6 12:47:37 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
161
162         * Renamed function silc_parse_nickname to silc_parse_userfqdn
163           to generally parse user@fqdn format strings.  Affected file
164           lib/silcutil/silcutil.c.
165
166         * Added nickname_format and nickname_force_format fields to the
167           SilcClientParams structure.  The first one defines the format
168           for the nicknames that the library will enforce if the receives
169           multiple same nicknames.  The second one is boolean value and
170           can be used to force the library to always enforce the format
171           to the nicknames regardles whether there are multiple nicknames
172           or not.  This configurable formatting was employed to flexibly
173           support accessing multiple nicknames from the user interface.
174           The userinterface can now set the nicknames to what ever format
175           they prefer.  Affected file lib/silcclient/silcapi.h.
176
177           Added function silc_client_nickname_format to the file
178           lib/silcclient/idlist.c.  It performs the nickname formatting.
179
180           Added new field `hostname´ to the SilcClientEntry context.
181           It holds the hostname of the client.  Affected file is
182           lib/silcclient/idlist.h.
183
184         * Irssi SILC Client sets the nicknames in nick@hostn format.
185           Fe. priikone@otaku, priikone@otaku2 etc.  Affected file
186           irssi/src/silc/core/silc-core.c.
187
188           The WHOIS printing now also shows both the real nickname and
189           the formatted nickname so that user knows how to access the
190           user if there are multiple same nicknames cached.  Affected
191           file irssi/src/silc/core/client_ops.c.  Changed the WHOIS
192           printing formatting too to take the hostname now as a separate
193           argument.  The Affected file is
194           irssi/src/fe-common/silc/modules-formats.[ch].
195
196         * Changed the silc_client_get_clients_local to accept the formatted
197           nickname as argument.  It accepts the real nickname too but the
198           formatted nickname can be used to find the true entry from 
199           multiple entries.  Affected file lib/silcclient/silcapi.h and
200           lib/silcclient/idlist.c.
201
202         * Added nickname_format_parse field to the SilcClientParams.
203           It is a callback function provided by the application to parse
204           the nickname out of the formatted nickname string. The library
205           calls it to get the nickname from the formatted string. Since
206           the application generally knows better the format of the nickname
207           string it parses it instead of the library, even though library
208           encodes the formatted string.  If the callback function is not
209           provided then the library will use the string as is.  The
210           affected file is lib/silcclient/silcapi.h.
211
212         * All the nickname strings passed to the client library in 
213           commands are now expected to be formatted nickname strings.
214           If the command does not support the formatted nickname string
215           it will assume that the sent string is the actual nickname.
216           Affected file lib/silcclient/command.c.
217
218 Tue Sep  4 22:31:28 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
219
220         * Added public key authentication support to OPER and SILCOPER
221           commands in the client library.  Affected file is
222           lib/silcclient/command.c.
223
224 Tue Sep  4 12:39:17 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
225
226         * Changed the get_auth_methdod client operation to be asynchronous.
227           It can be async if the application resolves the authentication
228           method from the server during the negotiation.  Added new
229           SilcGetAuthMeth completion callback that the application will
230           call after resolving the authentication method.
231
232           Added function silc_client_request_authentication_method that
233           the application can use to resolve the authentication method
234           from the server.  Added also SilcConnectionAuthRequest callback
235           that the library will call after the server has replied.  The
236           application can call this function if it does not know the
237           current authentication method.
238
239           Affected files are lib/silcclient/client.c and 
240           lib/silcclient/silcapi.h.
241
242         * The Irssi SILC client now automatically resolves the authentication
243           method incase any configuration information is not present (and
244           currently there never is).  The affected file is
245           irssi/src/silc/core/client_ops.c.
246
247         * Fixed public key authentication from the client library.
248           Affected file lib/silcclient/protocol.c.  Changed also the
249           protocol specification about the public key authentication in
250           the connection authentication protocol.  The actual data to be
251           signed is now computed with a hash function before signing.
252
253         * Fixed the public key authentication from the server as well.
254           Affected file silcd/protocol.c.
255
256         * Removed the mlock()'s from the memory allocation routines.
257           Affected file lib/silcutil/silcmemory.c.  The ./configure does
258           not check anymore for the mlock().  Affected file is
259           configure.in.pre.
260
261         * Fixed USERS command in server to allow the execution of the
262           command for private and secret channels if the client sending
263           the command is on the channel.  Affected file silcd/command.c.
264
265         * Fixed silc_client_get_clients_local to return the clients
266           count correctly.  It could return wrong value.  Affected file
267           lib/silcclient/idlist.c.
268
269 Mon Sep  3 20:09:59 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
270
271         * Fixed the lib/silcmath/mpi/mpi.h to always use 32-bit data
272           types.  The assembler optimizations seemed not to like 64-bit
273           data types.  The assmebler optimizations thus are now enabled
274           also for BSD systems as opposed to only enable them for Linux.
275
276         * Do not check for threads at all on BSD systems.  Affected
277           file configure.in.pre.
278
279         * Removed -n and -h options from the Irssi SILC Client since
280           they are not used in silc.
281
282         * Fixed the prime generation to assure that the first digit
283           of the generated random number is not zero since our conversion
284           routines does not like number strings that starts with zero
285           digit.  If zero digit is seen the random number is regenerated.
286           This caused some corrupted RSA keys when the zero first digit
287           was met.  Affected file lib/silcmath/silcprimegen.c.
288
289 Sun Sep  2 17:17:24 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
290
291         * Fixed WIN32 configuration in the ./configure script.
292           Fixed to include xti.h on environments that has it.
293           Patches by Carsten Ilchmann and andrew.
294
295 Sat Sep  1 00:29:33 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
296
297         * Changed the silc_id_create_client_id to be collision
298           resistant.  It is now assured that there cannot be created
299           two same client ID's.  I suspect that some weird bugs in 
300           the server were actually caused by duplicate Client IDs.
301           Affected file silcd/serverid.[ch].  A router receiving
302           new ID now also assures and informs the sending server
303           if the ID caused collision.
304
305         * Changed the silc_id_create_channel_id to also assure that
306           there are no collisions.
307
308 Wed Aug 29 17:55:01 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
309
310         * Statement about ignoring the Mutual Authentication flag when
311           performing rekey with PFS was a bit misleading.  It is ignored
312           if it was set in the initial negotiation, it cannot be even
313           set in the rekey.  Fixed in the ke-auth draft.  Started the
314           new versions of the protocol drafts in the doc/.
315
316 Sun Aug 26 14:59:15 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
317
318         * Fixed a bug in silc_client_command_identify_save when saving
319           new channel information.  The channel name was no duplicated
320           and caused crash on exit.  Affected file is
321           lib/silcclient/command_reply.c.
322
323 Fri Aug 17 23:07:45 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
324
325         * Fixed the getkey command handling in the server.  Send just
326           empty OK reply to the sender if the key could not be fetched
327           (but everything else was ok, like the key just was not available).
328           Changed the public key parameter to optional in the protocol
329           specs so that empty OK reply can be sent.  Affected file
330           silcd/command.c.
331
332           Added a message to Irssi SILC client to tell to user if the
333           server did not return a public key.
334
335 Tue Aug 14 07:29:27 CEST 2001  Pekka Riikonen <priikone@silcnet.org>
336
337         * Fixed a channel key regeneration bug.  It registered new
338           timeout tasks exponentially until all system resources were
339           used.  Affected file silcd/server.c.
340
341 Sun Aug 12 20:48:14 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
342
343         * Added the SILC Document generator to the scripts/silcdoc.
344           It can be used to generate the Toolkit Reference Manual out
345           of the source tree.  Internally it will also use the RoboDoc
346           generator now imported in util/robodoc.
347
348 Sun Aug 12 12:28:17 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
349
350         * Added couple of return's in rekey protocol if error orccurred
351           during the protocol.  The execution must be terminated.
352           Affected file silcd/protocol.c.  Also, terminate the protocol
353           always with timeout.
354
355 Sat Aug 11 12:36:02 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
356
357         * The client's Client ID was created initally from the wrong
358           nickname (it could have been in format nick@host) in the
359           silc_server_new_client.  Affected file silcd/packet_receive.c
360
361 Sat Aug 11 00:29:57 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
362
363         * Added some SILC_LOG_ERROR's to various error conditions
364           if client could not be added to ID cache.  Affected files
365           silcd/packet_receive.c and silcd/server.c.
366
367         * When client's sock->user_data is freed, NULL also the 
368           client->router and client->connection pointers.  Added check
369           for these pointers being NULL to various places around the
370           code.  Affected file silcd/server.c.
371
372         * Added client->data.registered == TRUE checks to various
373           places around the code to assure that unregistered client's
374           are not handled when it is not allowed.  Affected file
375           silcd/server.c.
376
377         * Added `bool registered' fields to all 
378           silc_idlist_[server|client]_get_* routines to indicate whether
379           the fetched client needs to be registered or not.  Affected
380           file silcd/idlist.[ch].
381
382         * Add your own entry as registered to the ID cache in the
383           server.  Affected file server.c.
384
385         * Fixed a bug in silc_server_new_server.  The SilcServer was
386           set as the new server's context instead of SilcServerEntry.
387           This naturally caused some weird bugs.
388
389 Thu Aug  9 18:28:37 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
390
391         * Do not delete the channel rekey task when adding it
392           for in silc_server_create_channel_key.
393
394         * Changed the silc_server_create_channel_key to return
395           TRUE or FALSE to indicate the success of the channel key
396           creation.
397
398 Thu Jul 26 11:32:31 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
399
400         * Fixed MSVC++ project files and added missing files to
401           Makefiles under win32/.
402
403 Wed Jul 25 18:43:54 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
404
405         * Do not add TCP_NODELAY flag if the operating system
406           does not have it defined.  Affected files are
407           lib/silcutil/[unix/win32]/silc[unix/win32]net.c.
408
409         * Fixed buffer overflow from Irssi SILC Client.  Affected
410           file irssi/src/fe-common/core/themes.c.
411
412         * Fixed double free in client library in the file
413           lib/silcclient/client.c when disconnecting from server.
414
415         * Applied double free patch from cras to Irssi SILC client.
416           Affected files irssi/src/core/[modules/expandos].c
417
418         * Fixed the disconnection handling to Irssi SILC Client.
419           The application must call silc_client_close_connection
420           in ops->connect client operation in case of failure of
421           the connection.  Affected file is
422           irssi/src/silc/core/client_ops.c.
423
424         * Do not set sock->protocol to NULL in the function
425           silc_client_close_connection after executing the protocol's
426           final callback since the sock might not be valid anymore.
427           Affected file lib/silcclient/client.c.
428
429 Wed Jul 25 16:04:35 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
430
431         * Do not enable SILC_THREADS if the linking with libpthread
432           did not happen.  Affected file configure.in.pre.
433
434         * Added notion to protocol specification that server must
435           verify the sent authentication payload with CMODE when
436           setting the channel founder key.  Implemented it to the
437           server.  Affected file silcd/command.c.
438
439 Mon Jul 23 18:31:43 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
440
441         * Added _EXTRA_DIST SILC distribution variable to the
442           distributions file.  It is used to conditionally add extra
443           files or directories to the specific distribution.  Affected
444           files ./prepare, Makefile.am.pre and distributions.
445
446           Removed the `_' from the start of the distribution names.
447           It is redundant.
448
449         * Added README.WIN32 for instructions to compile the Toolkit
450           under WIN32.
451
452 Mon Jul 23 10:12:37 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
453
454         * Fixed a double free in disconnection in the server.  Affected
455           file is silcd/server.c.
456
457         * Fixed the lib/silcske/groups.c to work now also with GMP
458           MP library.  The string conversion did not work when using
459           specific base and the base is indicated in the string as well.
460
461         * Created win32/ directory which now includes MSVC++ specific
462           stuff so that toolkit (DLLs) may be compiled with MSVC++.
463           It will appear only in the toolkit distribution
464
465 Sun Jul 22 19:40:30 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
466
467         * Changed the key material distribution function in case when
468           the hash output is too short.  The data is now concatenated
469           a bit differently than it used to.  Made the change to the
470           SKE protocol specification.
471
472         * Added better GMP detection to configure.in.pre.  A patch
473           by salo.
474
475 Fri Jul 20 13:16:00 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
476
477         * Fixed a minor bug in SKE that might cause some problem on
478           some platforms.  Affected file lib/silcske/silcske.c.
479
480         * Added the cookie checking for initiator in the SKE.  It checks
481           that the responder returns the sent cookie unmodified.  The
482           affected file is lib/silcske/silcske.c.  Added new SKE
483           error type INVALID_COOKIE that can be sent during the
484           negotiation.  Fixed some memory leaks as well.
485
486         * Added the "invalid cookie" error message to Irssi SILC client's
487           message formats.
488
489 Thu Jul 19 21:44:31 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
490
491         * Added `task_max' field to the SilcClientParams to indicate
492           the maximum tasks the scheduler can handle.  If set to zero,
493           default values are used.  Affected file lib/silcclient/silcapi.h.
494
495         * Fixed memory leaks in silc_client_close_connection.  Affected
496           file lib/silcclient/client.c.
497
498         * Added silc_client_del_client_entry to client library to free
499           all memory of given client entry.  Affected file is
500           lib/silcclient/idlist.[ch].
501
502         * Added new functions silc_client_del_channel and
503           silc_client_del_server to delete channel and server entries.
504           Affected file lib/silcclient/[silcapi.h/idlist.c].
505
506         * Removed silc_client_del_client_by_id from silcapi.h.
507
508         * Fixed the INFO command to return the server's own info
509           correctly when querying by Server ID.  Affected file is
510           silcd/command.c.
511
512 Thu Jul 19 14:47:30 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
513
514         * Removed the non-blocking settings in WIN32 code in the
515           silc_sock_[read/write] and added SleepEx instead.  Affected
516           file lib/silcutil/win32/silcwin32sockconn.c.  The availability
517           of input data is now checked with FIONREAD and ioctlsocket.
518
519 Wed Jul 18 18:34:01 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
520
521         * Call silc_schedule_task_del_by_context in the 
522           silc_protocol_cancel instead of silc_schedule_task_del_by_callback.
523           Affected file lib/silccore/silcprotocol.c.
524
525         * Call silc_protocol_cancel for active protocols in the
526           silc_server_close_connection if the funtion
527           silc_server_free_sock_user_data has not been called.
528           Affected file silcd/server.c.
529
530         * Generic tasks cannot be deleted using the del_by_fd
531           task deleting function since generic tasks does not match
532           any specific fd.  Affected file lib/silcutil/silcschedule.[ch].
533
534         * Added a notion to SILCOPER help file that the SILCOPER works
535           only on router server, not on normal server.
536
537 Wed Jul 18 09:40:04 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
538
539         * Added for WIN32 support for the new scheduler as well.
540           Affected file lib/silcutil/win32/silcwin32schedule.c.
541
542         * Fixed the SHA1 implementation to work on various platforms.
543
544 Tue Jul 17 23:04:10 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
545
546         * Rewrote the SILC Scheduler entirely.  Removed the old SILC Task
547           API.  It is part of the scheduler now.  Everything else is
548           as previously but some functions has changed their names.
549           Checkout the lib/silcutil/silcschedule.h for the interface.
550           Updated all applications to use the new interface.  Affected
551           files are lib/silcutil/silcschedule.[ch].
552
553 Tue Jul 17 16:53:30 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
554
555         * Found a bug in the SKE implementation.  The HASH value,
556           specified by the protocol, was not computed correctly.  The
557           public key of the responder was not added to the computation
558           even though it is mandatory.  Affected file lib/silcske/silcske.c.
559           This unfortunately causes incompatibilities with older
560           clients and servers.
561
562         * Added WIN32 specific network init and uninit functions:
563           silc_net_win32_init and silc_net_win32_uninit to init and uninit
564           the Winsock2.  Affected file lib/silcutil/silcnet.h and
565           lib/silcutil/win32/silcwin32net.c.
566
567         * Set the socket always to nonblocking mode on WIN32 after
568           reading data or writing data.  Affected file is
569           lib/silcutil/win32/silcwin32sockconn.c.
570
571 Mon Jul 16 22:55:26 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
572
573         * Fixed various compilation problems under WIN32.  Affected
574           files lib/silcutil/win32/silcwin32thread.c and
575           lib/silcutil/win32/silcwin32schedule.c.
576
577         * Removed all _internal.h #includes from public header
578           files.  Internal headers must never be included from
579           public headers.
580
581           Removed also the lib/silcske/payload_internal.h file.
582
583         * All include files that may be needed (public and some others
584           included by the public headers) by application developers are
585           now copied to the ./includes directory.  It does not copy any
586           internal headers.  Affected file Makefile.defines.pre and all
587           Makefile.am's under lib/ and subdirs.
588
589 Thu Jul 12 17:49:31 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
590
591         * Do not change the ~/.silc directory's permissions automatically.
592           Affected file irssi/src/silc/core/clientutil.c.
593
594 Thu Jul 12 10:18:40 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
595
596         * Do not cancel the protocol in silc_server_close_connection
597           it might cause recursion.  Now cancelled in the function
598           silc_server_free_sock_user_data.  Affected file silcd/server.c.
599
600         * Fixed the silc_server_remove_clients_by_server to regenerate
601           the channel keys correctly finally.  Added also new function
602           silc_server_remove_clients_channels to actually do it.
603           Affected file silcd/server.c.
604
605         * Fixed the silc_server_new_channel to not crash by giving
606           wrong router to the new channel.  Affected file is
607           silcd/packet_receive.c.
608
609 Wed Jul 11 18:31:57 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
610
611         * Added SilcClientParams structure to the lib/silcclient/silcapi.h
612           which is given as argument to the silc_client_alloc now.
613           It can be used to configure the client and set various parameters
614           that affect the function of the client.
615
616         * The USERS command in server did not check whether the channel
617           is private or secret.  Affected file silcd/command.c.
618
619         * Added new argument to the USERS command in protocol specification.
620           The USERS command now can take the channel name as argument
621           as well.  Added support for this in client and server and
622           updated the protocol specs.
623
624         * Completed the GETKEY command in client. It can be now used
625           to fetch also servers public key not only some clients. 
626           Affected files lib/silcclient/command[_reply].c.
627
628         * Added silc_client_get_server to return server entry by the
629           server name.  Affected files lib/silcclient/silcapi.h and
630           idlist.c.
631
632         * Redefined the IDENTIFY command in protocol specification to be
633           more generic.  It now can be used to query information about
634           any entity in the SILC Network, including clients, servers and
635           channels.  The query may be based either the entity's name
636           or the ID.  Added support for this in both client and server.
637
638           Affected files silcd/command.c and lib/silcclient/command.c
639           and command_reply.c.
640
641         * Optimized the WHOIS and WHOWAS commands in the server. Removed
642           the _from_client and _from_server functions.  Affected file
643           silcd/command.c.
644
645         * Added silc_client_get_channel_by_id_resolve to the file
646           lib/silcclient/silcapi.h to resolve channel information by
647           its ID.  Added also silc_client_get_channel_by_id that
648           does not resolve it from the server.
649
650 Tue Jul 10 18:05:38 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
651
652         * Added SilcServerEntry context into the client library
653           to represent one server.  The INFO command now allocates
654           these to save the resolved server info.  For now on the
655           client library will also keep information about servers,
656           connected and resolved with INFO.
657
658           The INFO command now allocates the SilcServerEntry context
659           and saves the server info there.  The COMMAND_REPLY in
660           the INFO now returns the parameters to application in 
661           same order as defined in the protocol specification.
662
663           The entries are cached in the client->server_cache.
664
665         * The INFO command is now issued after received the Client ID
666           from the server.  Affected file lib/silcclient/client.c.
667
668         * The CMODE_CHANGE notify may now return also an SilcServerEntry
669           to the application as the mode changer might be server.
670           It is guaranteed that NULL is not returned anymore to the
671           application.  Affected file lib/silcclient/client_notify.c.
672
673           The ID Type is now also passed to the application so that
674           it can check whether the returned entry is SilcClientEntry
675           or SilcServerEntry.
676
677           Added new function silc_client_get_server_by_id to return
678           the server entry by ID.  Affected files are the
679           lib/silcclient/silcapi.h and lib/silcclient/idlist.c.
680
681         * Do not create the channel in the Irssi SILC Client when issuing
682           the JOIN command but when received the sucessful JOIN command
683           reply.  Otherwise the channel might get created even though we
684           could not join it.  The Affected file is
685           irssi/src/silc/core/[silc-channels.c/client_ops.c].
686
687         * Fixed a channel joining bug in router.  The router must also
688           check the channel modes, invite and ban lists etc. when serving
689           the JOIN command sent by normal server.  Affected file is
690           silcd/command.c.  The router now resolves the client's 
691           information from the server who sent the JOIN command if it
692           does not know it, and processes the JOIN command only after
693           that.
694
695         * Changed the SilcCommandCb to take new argument; void *context2.
696           Affected file lib/silccore/silccommand.h
697
698           The second argument in the command callbacks in the server now
699           includes the SilcServerCommandReplyContext if the command was
700           called as pending command callback from the command reply.
701           Otherwise it is NULL. When called as pending the status of the
702           command reply will be checked and if it was erronous the
703           error will be sent to the original sender of the command.
704           This way the client always receives the error messages even
705           though the server was actually the one who received the error
706           when it resent the command to router, for example.  Affected
707           files silcd/command[_reply].[ch].
708
709         * Fixed sending WHOWAS command's error message to client if
710           the requested client could not be found.  It was missing.
711           silcd/command.c.
712
713         * Changed the CMODE and CUMODE commands reply arguments in the
714           protocol specification.  The Channel ID is now sent in both
715           of the commands to identify the channel.  Implemented this
716           new feature to the client and server.  Affected files
717           lib/silcclient/command_reply.c and silcd/command.c.
718
719         * Made better checks for invite and ban lists in the JOIN
720           command in server.  Affected file silcd/command.c.
721
722 Mon Jul  9 18:28:34 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
723
724         * The server now performs the incoming host IP/DNS lookup
725           using the silc_socket_host_lookup and thus does not block
726           the server anymore.  Affected file silcd/server.c.
727
728         * Completed the multi-thread support for SILC Scheduler in
729           the lib/silcutil/silcschedule.c.
730
731         * Fixed the configure.in.pre to detect the pthread correctly
732           on various systems.
733
734         * Fixed a deadlock in silc_task_queue_wakeup in the file
735           lib/silcutil/silctask.c.
736
737 Mon Jul  9 13:40:03 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
738
739         * Added new function silc_schedule_wakeup that is used in
740           multi-threaded environment to wakeup the main thread's
741           schduler. It needs to be used when a thread adds a new task
742           or removes a task from task queues. After waking up, the
743           scheduler will detect the task queue changes. If threads
744           support is not compiled in this function has no effect.
745           Implemented the wakeup mechanism to both Unix and WIN32
746           systems.  Affected files are lib/silcutil/silcschedule.[ch],
747           lib/silcutil/unix/silcunixschedule.c and the
748           lib/silcutil/win32/silcwin32schedule.c.
749
750         * Added new function silc_task_queue_wakeup to wakeup the
751           scheduler by the specified task queue.  Affected file
752           lib/silcutil/silctask.[ch].
753
754         * The silc_socket_host_lookup_start now wakes up the scheduler
755           after adding the timeout task.  Affected file is
756           lib/silcutil/silcsockconn.c.
757
758         * The silc_socket_host_lookup is synchronous now if the threads
759           support is not compiled in.  However, the callback is still
760           called asyncronously through the scheduler, anyway.  Affected
761           file lib/silcutil/silcsockconn.c.
762
763 Mon Jul  9 00:24:45 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
764
765         * Added new function silc_socket_host_lookup to perform
766           asynchronous IP and FQDN lookups for the socket connection.
767           Affected files lib/silcutil/silcsockconn.[ch].
768
769 Sun Jul  8 18:44:53 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
770
771         * Added SILC_MUTEX_DEFINE to define the mutex on environments
772           that may or may not compile the mutex support in.
773         
774           Changed the silc_mutex_alloc interface. It allocates the
775           mutex now to the sent pointer and returns TRUE or FALSE.
776
777           Affected file lib/silcutil/silcmutex.h.
778
779         * Wrote the SILC Task Queue interface to support multi-threads.
780           Affected file lib/silcutil/silctask.[ch].
781
782         * Wrote the SILC Scheduler to support multi-threads.  Affected
783           file lib/silcutil/silcschedule.c.
784
785 Sun Jul  8 11:16:01 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
786
787         * Implemented the SILC Mutex API and SILC Thread API for WIN32
788           in lib/silcutil/win32/.
789
790 Sun Jul  8 00:18:15 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
791
792         * Defined SILC Mutex API and SILC Thread API and implemented
793           them for Unix.  Affected files are
794           lib/silcutil/silcmutex.h, lib/silcutil/silcthread.h,
795           lib/silcutil/unix/silcunixmutex.c and
796           lib/silcutil/unix/silcunixthread.c.
797
798 Sat Jul  7 14:40:31 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
799
800         * Fixed the silc_server_remove_clients_by_server's channel
801           key re-generation.  The hash table handling was incorrect
802           and would not work with many channels.  Affected file is
803           silcd/server.c.
804
805         * Fixed some memory leaks around the server code.
806
807         * Rewrote the silc_server_get_users_on_channel to support IPv6
808           based Client ID's.  Affected file silcd/server.c.
809
810         * Defined the SILC_MESSAGE_FLAG_SIGNED to the protocol
811           specification.  However, a separate document must be written
812           to define the detailed signing procedure and the payload
813           associated with the flag.  Defined the flag to the
814           lib/silccore/silcchannel.h as well.
815
816 Fri Jul  6 18:26:31 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
817
818         * Changed the dynamic tables to static size tables in the
819           lib/silccrypt/silchmac.c.
820
821         * Removed GCC dependencies from the code.  A patch by cras.
822
823 Fri Jul  6 09:39:35 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
824
825         * Do not show the error "Error receiving packet bla bla"
826           in server if it really was not an error (-2 means that reading
827           is pending).  Affected file silcd/server.c.
828
829 Thu Jul  5 21:22:32 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
830
831         * Fixed a possible crash in silc_server_remove_clients_by_server
832           in silcd/server.c.  Fixed there also some memory leaks.
833
834         * Fixed the silc_idlist_replace_client_id.  It could replace
835           wrong key in the hash table.  Affected file silcd/idlist.c.
836
837         * Do not check whether there are global users on the channel
838           if the channel->global_users is FALSE.  Affected functions
839           silc_server_remove_from_one_channel and
840           silc_server_remove_from_channels in silcd/server.c.  Also,
841           do not check if the removed client is local as we can be
842           sure that global client was not removed from the channel
843           and checking for global users is not needed.
844
845         * The silc_server_remove_clients_by_server now re-generates
846           the channel keys correctly for those channels that had
847           clients removed from them.  Affected file silcd/server.c.
848
849 Tue Jul  3 11:39:20 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
850
851         * Found the reason of random crashes in the server.  We weren't
852           ignoring the SIGPIPE signal (which can be sent in write())
853           and it crashed the server.  Affected file silcd/silcd.c.
854
855 Fri Jun 29 20:05:25 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
856
857         * Assure that sock->user_data is not NULL in the function
858           silc_server_packet_send in silcd/packet_send.c.
859
860         * Disconnect the remote connection if it could not be added
861           to any ID lists in the server.  The affected file is
862           silcd/server.c.
863
864         * Check in silc_server_packet_send[_real/dest] that the
865           socket is not disconnecting and ignore the data if it is.
866           Affected file silcd/packet_send.c.
867
868         * Define inline to __inline on native WIN32 compilation.
869           Affected file includes/silcwin32.h.
870
871         * Added some explicit type casts for inline code since MSVC
872           require them.  Affected files lib/silcutil/silcbuffer.h,
873           lib/trq/silcdlist.h and lib/trq/silclist.h.
874
875         * Print warning in log files from now on if the packet
876           decryption fails.  Affected file silcd/server.c.
877
878 Thu Jun 28 21:30:39 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
879
880         * Changed the `say' client operation's interface to accept
881           new `type' argument to indicate the type of the message sent
882           by the library.  The application may filter the library's
883           messages according the type.  The affected file is the
884           lib/silcclient/silcapi.h.
885
886         * Added two new functions to lib/silcclient/silcapi.h:
887           silc_client_del_client and silc_client_del_client_by_id.
888           Affected file lib/silcclient/idlist.c.
889
890         * Moved the clientincludes.h from includes/ to silc/ and
891           serverincludes.h from includes/ to silcd/.
892
893         * The modes for the CMODE and CUMODE are now passed as
894           uint32 for application with COMMAND_REPLY.  The affected
895           file is lib/silcclient/command_reply.c.
896
897 Wed Jun 27 22:24:47 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
898
899         * /WHOIS without arguments shows client's own information.
900           Affected file lib/silcclient/command.c.
901
902         * Changed PING to not accept any arguments.  The specs
903           says that client can ping only the connected server so
904           requiring an argument is not needed.  Affected file is
905           lib/silcclient/command.c.
906
907 Wed Jun 27 00:10:33 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
908
909         * Fixed a fatal bug in private message sending and reception
910           encryption and decryption when using private message keys.
911           The implementation was incorrect and did not follow the
912           specification.  It causd that some of the message were
913           lost since it did not use the sending and receiving keys
914           as the protocol suggests.  This has been fixed and will cause
915           incompatibilities with older clients when sending private
916           message encrypted with private message keys.  Affected files
917           lib/silcclient/client_prvmsg.c, lib/silcclient/client_keyagr.c
918           and various other in Irssi SILC Client.
919
920           Added `responder' boolean argument to the functions
921           silc_client_add_private_message_key[_ske] to indicate when
922           the key is added as responder or initiator of the key
923           negotiation.
924
925 Tue Jun 26 19:23:07 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
926
927         * Removed the silc_ske_check_version function and created
928           a SilcSKECheckVersion callback.  Added also a function
929           silc_ske_set_callbacks that is now used to set all SKE
930           callbacks.  The callback functions are not given to
931           the SKE functions anymore, but this function is used to
932           set the callbacks.
933
934         * Fixed the WIN32 DLL generation in lib/Makefile.am.pre.
935
936         * Added `silc_version' argument to the silc_client_alloc
937           to define the version of the application for the library.
938           The library will use the version string to compare it
939           against the remote host's (usually a server) version
940           string.  Affected file lib/silcclient/silcapi.h
941
942         * Added the KE protocol context to Key Agreement context
943           in client library so that we can abort the SKE if it
944           is in process when we get timeout.  Affected file is
945           lib/silcclient/client_keyagr.c.
946
947         * Do not resolve the client ID forever if it returns in the
948           first time that such client does not exist.  This was done
949           for example with private message.  Affected file is
950           lib/silcclient/client_prvmsg.c.
951
952 Mon Jun 25 21:42:51 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
953
954         * Do not add regex.h for WIN32.  The affected file
955           includes/silcincludes.h.
956
957         * Added WIN32 DLL generation to lib/Makefile.am.pre.  It might
958           not work yet 100%.  It generates the DLL's automatically
959           when compiling with --with-win32 under cygwin.
960
961 Sun Jun 24 19:49:23 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
962
963         * lib/contrib/regex.c is not compiled on WIN32.
964
965         * Added silc_net_get_socket_opt function to the
966           lib/silcutil/silcnet.h.
967
968         * Added includes/silcwin32.h for WIN32 specific includes
969           and definitions.
970
971         * Do not use ptime structure or any of the posix process
972           functions on WIN32 in lib/silccrypt/silrng.c.
973
974         * Added silc_gettimeofday to provide generic function
975           for struct timeval on all platforms.  Added the function
976           to lib/silcutil/silcutil.h.
977
978 Sun Jun 24 12:19:52 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
979
980         * Moved the lib/silccore/silcsockconn.[ch] to the utility
981           library as they clearly belong there.  As a plus side we
982           can make the actual socket connection routines platform
983           specific.
984
985           Added also new generic function silc_socket_read and
986           silc_socket_write (that used to be silc_packet_[read/write].
987           The implementation of these are platform specific.
988
989         * Added WIN32 specific routines of silc_socket_[read/write]
990           to lib/silcutil/win32/silcwin32sockconn.c.
991
992 Sat Jun 23 16:01:00 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
993
994         * Added preliminary support for native WIN32 compilation under
995           cygwin (using the -mno-cygwin option for GCC) to the
996           ./configure.in.pre.  The --with-win32 now prepares the
997           compilation for native WIN32.
998
999         * Rewrote the SILC Scheduler interface in the file
1000           lib/silcutil/silcschedule.h.  The scheduler is now context
1001           based and does not have anymore any global static scheduler.
1002           Moved the Unix scheduler to the lib/silcutil/unix/ directory
1003           and created lib/silcutil/win32 directory for WIN32 based
1004           scheduler.
1005
1006         * Added Unix specific network routines to the
1007           lib/silcutil/unix/silcunixnet.c and the old
1008           lib/silcutil/silcnet.c includes now only generic routines.
1009
1010           Added WIN32 specific network routines to the
1011           lib/silcutil/win32/silcwin32net.c.
1012
1013         * Added Unix specific utility functions from the
1014           lib/silcutil/silcutil.c to lib/silcutil/unix/silcunixutil.c.
1015
1016         * Added WIN32 SILC Scheduler to the file
1017           lib/silcutil/win32/silcwin32schedule.c. The code is of course
1018           untested.
1019
1020 Fri Jun 22 10:44:14 EEST 2001  Pekka Riikonen <priikone@silcnet.org>
1021
1022         * Do not handle JOIN notify in the server if the target client
1023           is not registered (idata->registered == FALSE).  The affected
1024           file is silcd/packet_receive.c.
1025
1026         * Update the nickrec->founder in event_cumode in the Irssi SILC
1027           client.  Affected file irssi/src/silc/core/silc-channels.c.
1028
1029         * Fixed the CUMODE_CHANGE notify handling in the server when
1030           server and router are announcing their clients on channels.
1031           Now the mode changes are saved and notified correctly.  The
1032           affected file is /silcd/packet_receive.c.
1033
1034         * Fixed silc_idlit_replace_[server/client/channel]_id functions.
1035           They really did not replace the cache entry in the ID Cache.
1036           Now they do that.  Affected file silcd/idlist.c.
1037
1038         * Fixed the KICK notify handling in the Irssi SILC client to
1039           update the channel records so that the kicked client does not
1040           appear to be on the channel.  The affected file is 
1041           irssi/src/silc/core/silc-channels.c.
1042
1043         * Always update the conn->current_channel when executing command
1044           on a channel.  Affected file irssi/src/silc/core/silc-servers.c.
1045
1046         * Fixed the KILL notify handling in Irssi SILC client to remove
1047           the killed client on all channels.
1048
1049 Thu Jun 21 17:10:08 CEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1050
1051         * Fixed the silc_parse_command_line to remove extra spaces
1052           from the start and end of the arguments.  Affected file is
1053           lib/silcutil/silcutil.c.
1054
1055         * Cancel and free any active protocol in the function
1056           silc_server_close_connection.  Affected file silcd/server.c.
1057
1058         * Cancel and free any active protocol in the function
1059           silc_client_close_connction.  Affected file is
1060           lib/silcclient/client.c.
1061
1062         * Do not execute the KILL command for clients that are in
1063           history (ie. they are not in the network).  Affected file is
1064           silcd/command.c.
1065
1066         * Fixed KILL notify handling, client does not crash anymore.
1067           Affected file irssi/src/silc/core/silc-channels.c.
1068
1069         * Reduced the default packet buffer size from 2048 to 1024 in   
1070           lib/silccore/silcpacket.c.
1071
1072         * Added SILC_SKE_STATUS_FREED SKE status type and a reference
1073           counter to the SKE context that is incresed when the SKE library
1074           performs async operation outside the library.  If the outside
1075           process frees the SKE context and FREED status will be set 
1076           and the library will detect after the sync operation that the
1077           libary is freed.  The affected files are
1078           lib/silcske/silcske[_status].[ch].
1079
1080         * Resolve the client entry information in the function
1081           silc_client_channel_message to assure that NULL pointer is not
1082           passed as client entry to the application. */
1083
1084         * Fixed the task timeout calculation to assure that there is
1085           never negative timeouts.  The affected file is 
1086           lib/silcutil/silcschedule.c.
1087
1088         * Fixed the channel user mode notification sending in server.
1089           It was sent point-to-point to the router (or to server by router)
1090           but it needs to be destined to a channel.  The routines now
1091           supports sending the channel user mode notifys to the channels
1092           when announcing clients and channels.  Affected files are
1093           silcd/server.c and silcd/packet_receive.c.
1094
1095         * Fixed the CHANNEL_CHANGE notify handling in the client libary.
1096           It did not actually replace the old channel entry in the cache.
1097           Affected file lib/silcclient/client_notify.c.
1098
1099 Tue Jun 19 22:10:36 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1100
1101         * Fixed a possible crash in silc_packet_send_prepare.  It now
1102           assures always that there is enough space in the buffer and
1103           at the tail area of the buffer (for MAC). 
1104
1105           Fixed the inbound buffer reallocation in silc_packet_read.
1106           It was old code and did not handle the reallocation correctly.
1107           Affected
1108
1109           The affected file is lib/silccore/silcpacket.c.
1110
1111         * Fixed buffer overflow in silc_parse_nickname in the file
1112           lib/silcutil/silcutil.c.
1113
1114 Tue Jun 19 13:40:09 CEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1115
1116         * make install generates new server keys only if there is not
1117           keys already.
1118
1119 Mon Jun 18 18:49:07 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1120
1121         * Set SILC_MESSAGE_FLAG_NOREPLY when sending the away message.
1122           Added check that if the NOREPLY is set then we will not send
1123           the away message.  This avoids infinite loop of away messages
1124           if both clients are away.  The affected file is
1125           lib/silcclient/client_prvmsg.c.
1126
1127         * Fixed client crash if /NICK was given without arguments.
1128           Affected file lib/silcclient/command.c.
1129
1130         * Server does not send the invite list in INVITE command back
1131           to the client if the list was not altered.  Added this notion
1132           to the protocol spec as well.  Affected file silcd/command.c.
1133
1134           Fixed possible crash in INVITE command by checking the
1135           value of silc_server_get_client_route command.
1136
1137         * Fixed the INVITE notify type handling.  The arguments are now
1138           taken in correct order and client does not crash.  The affected
1139           file is irssi/src/silc/core/silc-channels.c.
1140
1141           Removed the "Inviting xxx to channel" message from the
1142           client library away and let the application handle it.
1143           Affected file lib/silcclient/command.c.  Added that message
1144           to Irssi SILC client's message formats.
1145
1146         * Fixed CMODE command crash in client.  It now checks the
1147           amount of arguments correctly and does not crash.  The affected
1148           file is lib/silcclient/command.c.
1149
1150         * Do not create new channel automatically in silc_channels_join
1151           but check whether the channel by that name already exists.
1152           Affected file irssi/silc/core/silc-channels.c.
1153
1154         * Do not send the SERVER_SIGNOFF to router if the disconnected
1155           entity was the router.  Affected file silcd/server.c.
1156
1157         * Added the handling of the SERVER_SIGNOFF notify to the Irssi
1158           SILC client as it was missing from there.
1159
1160           Added the handling of the KICK notify to the Irssi SILC client
1161           as it was missing.  Added "you have been kicked" message to
1162           Irssi SILC client's message modules formats.
1163
1164           Added the handing of the KILL notify to the Irssi SILC client
1165           as it was missing.  Added the kill message module formats 
1166           as well.
1167
1168           The affected file is irssi/src/silc/core/silc-channels.c.
1169
1170         * The router did not save the channel mode the server announced.
1171           Affected file silcd/packet_receive.c.
1172
1173         * Fixed a possible crash in INFO command in server.  If the
1174           server did not provide the server info it crashed.  Affected
1175           file silcd/command.c.
1176
1177 Sun Jun 17 15:26:05 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1178
1179         * Fixed the GETKEY command in the server to check also the
1180           global list.  Otherwise the GETKEY would not work correctly
1181           in normal SILC server.  Affected file silcd/command.c.
1182
1183 Sat Jun 16 18:00:00 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1184
1185         * Fixed GETKEY crash, it crashed if the command did not succseed.
1186
1187 Tue Jun 12 21:36:18 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1188
1189         * Redefined the SILC MP API in lib/silcmath/silcmp.h. The API
1190           is now real and not just an macro interface to GMP.
1191
1192           Removed the entire GMP from the source tree and imported new
1193           NSS MPI library instead.  Reason for removing GMP is that it is
1194           extremely large and compiles extremely slow.  The NSS MPI
1195           is only a few files and compiles in less than 10 seconds.
1196           The speed is also about the same as GMP.  The MPI is imported
1197           to lib/silcmath/mpi.
1198
1199           If the system has GMP installed we will still use the GMP.
1200           If it is not then the NSS MPI will be compiled.
1201
1202 Mon Jun 11 18:07:24 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1203
1204         * Merged a long nickname (127 characters long) crash bugfix from
1205           Irssi CVS tree.  Affected file irssi/src/core/misc.c.
1206
1207         * Merged a freed memory reference bugfix from Irssi CVS tree.
1208           Affected file irssi/src/core/commands.c.
1209
1210 Sun Jun 10 16:08:35 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1211
1212         * Added the server's public key sving and verification to the
1213           server when performing the SKE.  This was missing and the
1214           remote server's (or router's) public key was accepted without
1215           checking whether we have it previously or trust it at all.
1216           Affected file silcd/protocol.c.
1217
1218 Sat Jun  9 20:17:30 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1219
1220         * Check in the silc_server_timeout_remote if protocol is active
1221           and make sure that the protocol's final callback is called so
1222           that all memory if freed.  Affected file silcd/server.c.
1223
1224 Sat Jun  9 12:51:27 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1225
1226         * silc_server_whois_send_reply crashed the server if the nickname
1227           was 127 characters long.  Affected file silcd/command.c.
1228
1229 Thu Jun  7 16:29:56 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1230
1231         * Added sanity check to the silc_server_new_client. If the hostname
1232           is provided inside username then check that the provided hostname
1233           really is the same as the resolved one.  If the hostname was not
1234           resolved then check it from the public key.  Affected file is
1235           silcd/packet_receive.c.
1236
1237         * Fixed a fatal bug in Irssi SILC client. Do not send QUIT command
1238           if the server disconnected us and the connection is not valid
1239           anymore.  Affected file irssi/src/silc/core/silc-channels.c.
1240
1241         * Moved the silc_client_[chmode|chumode|chumode_char] away from
1242           the library to the lib/silcutil/silcutil.[ch].
1243
1244 Thu Jun  7 08:57:16 CEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1245
1246         * Close log file after open.  Affected file 
1247           lib/silcutil/silclog.c.
1248
1249         * Check whether sock == NULL in silc_client_send_packet and return
1250           if it is.  Affected file lib/silcclient/silcclient.c.
1251
1252         * Check rec->entry == NULL in the Irssi SILC Client before
1253           sending the channel message.  Affecte file is
1254           irssi/src/silc/core/silc-servers.c.
1255
1256 Tue Jun  5 08:08:21 CEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1257
1258         * Merged a splitted window bugfix from Irssi CVS tree.  The 
1259           affected file is irssi/src/fe-text/textbuffer-view.c.
1260
1261         * Fixed the ME, ACTION and NOTICE printing in Irssi Client.
1262           It did not print nickname.
1263
1264         * Improved the distributions system a bit.
1265
1266 Mon Jun  4 17:57:16 CEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1267
1268         * Merged /WINDOW bugfix from irssi CVS tree. Affected file is
1269           irssi/src/fe-text/gui-window.c.
1270
1271         * Fixed a fatal bug in Irssi SILC client. Crashed if sent message
1272           to in-active server.  The affected file is
1273           irssi/src/silc/core/client_ops.c.
1274
1275         * Resolve the client in USERS command reply if the entry does
1276           not have username resolved.  The affected file is
1277           lib/silcclient/command_reply.c.  Also, changed the IDENTIFY
1278           command to WHOIS command to really resolve stuff.  The USERS
1279           is not used any more in any critical section so WHOIS can
1280           be used even though it might be slower than IDENTIFY.
1281
1282         * Changed the lib/silcutil/silchashtable.h header to ROBODoc
1283           format.
1284
1285 Sun Jun  3 14:21:32 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1286
1287         * Changed the protocol API a bit more consistent in the
1288           lib/silccore/silcprotocol.[ch].
1289
1290         * Changed the following headers to ROBODoc format:
1291
1292                 lib/silccore/silcpayload.h
1293                 lib/silccore/silcprotocol.h
1294                 lib/silccore/silcsockconn.h
1295
1296           All core library headers are now formatted.
1297
1298 Sat Jun  2 10:45:09 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1299
1300         * Fixed a bug in Irssi SILC client; do not show that you are
1301           server/router operator if you really are not.  Affected file is
1302           irssi/src/silc/core/client_ops.c.
1303
1304         * Renamed silc_command_free_payload to silc_command_payload_free.
1305           Affected file lib/silccore/silccommand.h
1306
1307         * Added silcmath.h to include the prototoypes of various routines
1308           in the lib/silcmath.  Removed the old modinv.h, mpbin.h and
1309           silcprimegen.h.
1310
1311         * Changed the following headers to ROBODoc format:
1312
1313                 lib/silccore/silcchannel.h
1314                 lib/silccore/silccommand.h
1315                 lib/silccore/silcid.h
1316                 lib/silccore/silcidcache.h
1317                 lib/silccore/silcmode.h
1318                 lib/silccore/silcnotify.h
1319                 lib/silccore/silcpacket.h
1320                 lib/silcmath/silcmath.h
1321
1322 Fri Jun  1 22:19:37 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1323
1324         * Added checking to the server code not to start the server if
1325           ciphers and stuff are not configured properly.  Affected files
1326           silcd/serverconfig.[h] and silcd/server.c.
1327
1328         * Changed the layout of the header files of the public interfaces
1329           in the SILC libraries.  The new layout supports ROBODoc 
1330           documentation tool (and some others) so that it is easy to create
1331           a library reference manual.  All the other headers and source
1332           code must still follow the CodingStyle document.  Also source
1333           code must not include these ROBODoc stuffs, only the headers.
1334           Furthermore, all public interface headers must now be named
1335           by using `silc' prefix, example: silcapi.h, silccipher.h.
1336           Some files were renamed due to this.  All the other headers
1337           must not be used as public interfaces.  I will update the
1338           CodingStyle document later.  Changed following headers, so far:
1339
1340                 lib/silcclient/silcapi.h
1341                 lib/silccore/silcauth.h
1342                 lib/silccore/silcprivate.h
1343                 lib/silccrypt/silcdh.h
1344
1345 Fri Jun  1 10:28:09 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1346
1347         * Updated TODO.
1348
1349         * Removed silc_client_packet_send_flush from the client library
1350           as it is not needed.  Affected file lib/silcclient/client.[ch].
1351
1352         * Added printing of message of unresolved authentication method
1353           to the Irssi SILC client.  Added it to the module formats.
1354           Removed the same message from the client library.
1355
1356 Thu May 31 13:57:33 CEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1357
1358         * Added new distribution feature, DISTLABEL.  Every distribution
1359           can define own preprocessor label that can be used in the
1360           source code.  For example: #ifdef SILC_DIST_CLIENT.  Affected
1361           file distributions, acconfig.h.pre and prepare.
1362
1363 Tue May 29 22:16:40 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1364
1365         * Added Makefile.defines_int to include the actual definitions
1366           for Makefile.defines.in.  Tested the new distribution system,
1367           created distributions and tested installation.
1368
1369         * Added AWAY message printing to the Irssi SILC client.  Added
1370           the messages to the irssi/src/fe-common/silc/module-formats.[ch].
1371
1372         * Added SCONNECT command to call the SILC's CONNECT command.
1373           Cannot use CONNECT directly since Irssi uses that internally.
1374           Affected file irssi/src/silc/core/silc-servers.c.
1375
1376           Added ACTION local command.  It is same as ME command but takes
1377           the channel as mandatory argument.
1378
1379           Rewrote some of the Irssi's help files to suite for SILC
1380           protocol.
1381
1382 Mon May 28 19:05:22 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1383
1384         * Added Makefile.defines[.in] that should for now on be included
1385           in all Makefile.am file in the source tree.  That file includes
1386           all common compilation definitions for SILC source tree.
1387
1388 Mon May 28 10:30:51 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1389
1390         * Minor changes to the ./prepare script to change the package
1391           name according the distribution name to the configure.in.
1392
1393 Sun May 27 22:24:57 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1394
1395         * Created new distribution system.  Added file `distributions'
1396           that defines all the distributions that can be created out of
1397           the SILC source tree.  The ./prepare script now reads that
1398           file to determine how to prepare the distributions.  The
1399           first argument to the ./prepare is the name of the distribution
1400           and second is the version of the distribution.  If given
1401           without arguments it creates the default (toolkit) distribution
1402           with the default version (defined in ./prepare).
1403
1404           All Makefile.am files that are subject to the distributions
1405           are now named as Makefile.am.pre.  These are ./Makefile.am
1406           and lib/Makefile.am.  Others may be changed later.
1407
1408 Sun May 27 15:57:17 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1409
1410         * Added invite list, ban list, some key management and connection
1411           error message printing to module formats in the Irssi SILC client.
1412
1413         * Added new silc_client_set_away_message to set the away message
1414           that is back to the person who sent private message.  The 
1415           affected file lib/silcclient/silcapi.h and the
1416           lib/silcclient/client_prvmsg.c.
1417
1418 Sun May 27 12:39:48 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1419
1420         * Fixed the private message sending in the Irssi SILC client,
1421           added local command KEY to the Irssi SILC client.
1422
1423           Added key management and key agreement message formats to the
1424           irssi/src/fe-common/silc/module-formats.[ch].
1425
1426           Added USERS (alias WHO) printing, server/router operator
1427           indication and LIST command printing to the module formats.
1428
1429 Sat May 26 17:43:42 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1430
1431         * Fixed channel joining notify handling, cumode notify handling
1432           from Irssi SILC client.
1433
1434         * Added SILC specific module-formats to the Irssi SILC client so
1435           that SILC specific message hilighting, colors etc is possible.
1436           Affected file irssi/src/fe-common/silc/module-formats.[ch].
1437
1438           Added channel mode, channel user mode, actions, notices,
1439           whois and whowas printing to the the module-formats.c.
1440
1441         * Fixed a bug in channel deletion in the server.  The channel
1442           is not left to the cache even if the channel founder auth mode
1443           is set when there are no users anymore on the channel.  Affected
1444           file silcd/server.c.
1445
1446         * The silc_net_localhost now resolves the entire hostname including
1447           the domain name.  Affected file lib/silcutil/silcnet.c.
1448
1449 Sat May 26 12:13:37 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1450
1451         * Changed the ask_passphrase client operation to be ascynchronous.
1452           It has now a completion callback and a context that the 
1453           application must call after it has got the passphrase from
1454           the user.  Affected files lib/silcclient/silcapi.h,
1455           lib/silcclient/protocol.c, lib/silcclient/command.c and
1456           silc/client_ops.c.
1457
1458           Added SilcAskPassphrase callback that the application calls
1459           to deliver the passphrase to the library.
1460
1461         * Changed the SKE protocol's SilcSKEVerifyCb to be asynchronous.
1462           The public key verification and especially a certificate
1463           verification is asynchronous procedure.
1464
1465           Added new SILC_SKE_STATUS_PENDING status to indicate the
1466           request is pending and a callback will be called to finalize
1467           the request.
1468
1469           Added also SILC_SKE_STATUS_PUBLIC_KEY_NOT_PROVIDED status to
1470           indicate that remote end did not send its public key (or
1471           certificate), even though we require it.  Added check for this
1472           condition in the SKE.  This was a security bug, now fixed.
1473
1474           Defined new SilcSKEVerifyCbCompletion callback that is called
1475           when the verification process is completed.
1476
1477           The affected files lib/silcske/silcske_status.h and
1478           lib/silcske/silcske.[ch].
1479
1480         * Changed the verify_public_key client operation to be async
1481           as well.  Defined SilcVerifyPublicKey callback that is used to
1482           indicate the success of the public key verification process.
1483
1484           Changed the server and client to use the new async client 
1485           operations.
1486
1487         * Changed the Irssi SILC client's internal scheduler to be called
1488           twice as many times as it used to be.  As a result the client
1489           should be a bit faster now.  Affected file is
1490           irssi/src/silc/core/silc-core.c.
1491
1492         * Added support to Irssi SILC client of asynchronous public key
1493           verification and passphrase inquiry.  Affected file is
1494           irssi/src/silc/core/silc-core.c.
1495
1496 Fri May 25 14:38:38 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1497
1498         * Do not say "You have left channel %s" in client library.
1499           Moved it to the application.  Affected files are
1500           lib/silcclient/command.c and silc/client_ops.c.
1501
1502         * Fixed silc_client_get_clients.  Command context was not
1503           duplicated and was freed memory in the callback.  Affected
1504           file lib/silcclient/idlist.c.
1505
1506         * Do not say "you are now talking..." on JOIN command in the
1507           client library.  The appliation must handle it.
1508
1509         * Do not say ".. changed topic to" in command reply in the
1510           client libary.  The application must handle it.
1511
1512         * Fixed TOPIC command sending in the client library.
1513
1514         * Fixed a memory leak in silc_client_command_free in the file
1515           lib/silcclient/command.c.
1516
1517 Thu May 24 19:08:55 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1518
1519         * Imported a modified version of Irssi client to the source tree.
1520           The Irssi will be used to create a new client called
1521           Irssi SILC.  Imported to irssi/.
1522
1523           Added silc_core_init_finish function to the Irssi.  Affected
1524           file irssi/configure.in.
1525
1526           A lot changes in the Makefile.ams around the irssi tree.
1527
1528 Tue May 22 22:23:49 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1529
1530         * Do not rehash if the new size is same as the old size of the
1531           hash table, in the silc_hash_table_rehash*.  The affected file
1532           lib/silcutil/silchashtable.c.
1533
1534         * Replaced hash_table_del_by_context calls from the server
1535           (when channel->user_list and client->channels) to the
1536           hash_table_del as it is sufficient and faster.
1537
1538 Tue May 22 17:27:16 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1539
1540         * Added silc_hash_table_list, silc_hash_table_get and the
1541           SilcHashTableList structure to provide an alternative way to
1542           traverse the hash table.  The affected files are
1543           lib/silcutil/silchashtable.[ch].
1544
1545         * Changed the server's idlist routines to use the hash table
1546           routines to optimize the code.
1547
1548 Mon May 21 21:46:20 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1549
1550         * Replaced the client entry's `channel' list and channel entry's
1551           `user_list' list to hash tables for optimized lookup.  Changed
1552           the code to use the hash table interface around the code. 
1553           Affected file lib/silcd/idlist.[ch].
1554
1555         * Added `auto_rehash' boolean argument to the function
1556           silc_hash_table_alloc to indicate whether the hash table should
1557           auto-rehash when it thinks is appropriate time.  It will
1558           increase the hash table size if the there is twice as much
1559           entries in the table than the size of the table, and will
1560           decrease the size if there are twice as less entries than
1561           the size of the table.
1562
1563 Mon May 21 09:51:11 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1564
1565         * Fixed silc_xxx_get_supported to not crash at some circumstances.
1566
1567 Sun May 20 13:45:58 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1568
1569         * silc_idcache_purge_by_context deletes the entry now by context
1570           as it is supposed to do.  Affected file lib/silccore/idcache.c.
1571
1572         * Send the ERR_NO_SUCH_NICK in the WHOIS command reply if the
1573           client is not anymore valid (WHOWAS givens the info) and not
1574           the ERR_NO_SUCH_CLIENT_ID if the nickname still exists.
1575
1576 Sat May 19 16:30:03 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1577
1578         * Removed the `data' and `data_len' arguments from the ID Cache
1579           interfaces and added `name' argument.  ID Cache does not handle
1580           anymore the binary data only a names associated with given ID.
1581
1582         * When hashing a Client ID with silc_hash_id the entire ID is
1583           not hashed anymore, instead only the hash of the Client ID is
1584           hashed.  This way we can access the Client ID from the cache
1585           with Client ID but with the hash of the ID (which is a hash of
1586           the nickname) as well without any difference in performance.
1587
1588           Added also silc_idcache_find_by_id_one_ext to do one on one 
1589           searching when we have the actual ID.  Added also function
1590           silc_hash_client_id_compare.  The affected files are
1591           lib/silccore/idcache.[ch] and lib/silcutil/silcutil.[ch].
1592
1593         * When hashing the name associated with a ID it is always done
1594           in lowercase.  This way we can access the cache without worrying
1595           about case-sensitivity, even though, for example nicknames are
1596           case sensitive.
1597
1598         * Fixed a bug in server with channel message sending.  It put
1599           wrong ID type as destination ID.  The affected file 
1600           silcd/packet_send.c.
1601
1602         * silc_idcache_del_by_context now deletes from all hash tables
1603           by context.  Affected file lib/silccore/idcache.c.
1604
1605 Fri May 18 17:42:00 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1606
1607         * Changed the client library to use the new ID Cache interface.
1608           Changes around the source tree.
1609
1610         * Added silc_hash_table_rehash_ext to rehash with specific
1611           hash function.  Affected file lib/silcutil/silchashtable.[ch].
1612
1613         * Added silc_hash_string_compare to compare two strings in the
1614           hash table.  Affected file lib/silcutil/silcutil.[ch].
1615
1616 Fri May 18 11:18:45 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1617
1618         * Added new function silc_idcache_del_by_context into the
1619           lib/silccore/idcache.[ch].
1620
1621         * Changed the server's ID list routines to use the new ID Cache
1622           interface.  Changes around the source tree.
1623
1624 Fri May 18 08:35:31 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1625
1626         * Added silc_hash_table_del[_by_context]_ext functions in to the
1627           lib/silcutil/silchashtable.[ch].
1628
1629           Removed silc_hash_table_find_all* routines and added new
1630           silc_hash_table_find_foreach to replace them.
1631
1632           Added silc_hash_table_replace_ext function as extended
1633           replacing function.  Separated the simple hash table interface
1634           from the extended hash table interface in the file
1635           lib/silcutil/silchashtable.h.
1636
1637         * Fixed minor bugs and changed it to use some of the new
1638           hash table functions in lib/silccore/idcache.c
1639
1640 Thu May 17 18:15:12 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1641
1642         * Added new function silc_hash_table_find_all to return all keys
1643           in the hash table by the specified key.  As the hash table is
1644           collision resistant it also makes it possible to have several
1645           duplicate keys in the hash table.  This function may be used to
1646           find all of the keys from the hash.
1647
1648           Added user_context arguments to the SilcHashFunction,
1649           SilcHashCompare and SilcHashDestructor to deliver user specified
1650           context.
1651
1652           Added new fuctions silc_hash_table_find[_all]_ext to do
1653           extended lookup with specified hash and compare functions and
1654           specified user contexts.
1655
1656           Added new function silc_hash_table_add_ext to add the key
1657           with specified hash function and user context.
1658
1659           Added new function silc_hash_table_foreach to traverse all
1660           entrys in the hash table.  Added SilcHashForeach callback
1661           function.
1662
1663           Added new function silc_hash_table_del_by_context to delete
1664           the entry only if the context associated with the key matches.
1665
1666           Affected files are lib/silcutil/silchashtable.[ch].
1667
1668         * Removed silc_hash_[server/client/channel]_id and added just
1669           silc_hash_id to the lib/silcutil/silcutil.[ch].  Added also
1670           silc_hash_id_compare to compare two ID's using as the hash table
1671           comparison function.  Added also silc_hash_data to hash
1672           binary data and silc_hash_data_compare to compare it.
1673
1674         * Removed silc_idlist_find_client_by_hash as it is not needed
1675           anymore.  Affected file silcd/idlist.[ch].
1676
1677         * Rewrote the entire ID Cache system (in lib/silccore/idcache.[ch])
1678           to use internally the SilcHashTable.  The new ID Cache is a lot
1679           faster than the old one.  Some of the ID Cache interface was also
1680           rewritten and obsolete and stupid functions were removed.
1681
1682 Wed May 16 23:03:30 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1683
1684         * Added entry_count field to the SilcHashTable to keep the number
1685           of the entries in the table.  Implemented the function
1686           silc_hash_table_rehash.  Added new function
1687           silc_hash_table_count.  Affected file lib/silcutil/silchashtable.c.
1688
1689           Fixed a minor bug in silc_hash_table_free.
1690
1691         * Added silc_hash_string, silc_hash_uint, silc_hash_ptr,
1692           silc_hash_client_id, silc_hash_server_id and silc_hash_channel_id
1693           into the lib/silcutil/silcutil.[ch].
1694
1695 Wed May 16 20:02:47 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1696
1697         * Implemented a collision resistant hash table into the
1698           lib/silcutil/silchashtable[ch].  See the header and the source
1699           for the SilcHashTable API.
1700
1701 Tue May 15 22:05:46 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1702
1703         * Merged dotconf version 1.0.2 into lib/dotconf.
1704
1705 Sun May 13 19:32:09 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1706
1707         * Do not compile anything in lib/silcsim/* if the SIM support
1708           is not enabled.  The tree should now compile without problems
1709           under cygwin.
1710
1711 Thu May 10 22:49:51 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1712
1713         * Compiled the SILC under cygwin.  Compiled and tested briefly
1714           without problems.  More tests needed.  The SIMs didn't compile
1715           though.
1716
1717         * Added various #ifdef HAVE_* stuff to lib/silccrypt/silrng.c.
1718
1719         * Fixed possible crash in silc_get_username in the
1720           lib/silcutil/silcutil.c.
1721
1722 Tue May  8 09:04:03 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1723
1724         * Fixed a va_arg in silc/client_ops.c.
1725
1726         * Oops, RC5 routines were named AES and caused some problems
1727           when not using SIM's.  Affected file lib/silccrypt/rc5.c.
1728
1729 Sun May  6 13:59:48 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1730
1731         * Added new SilcIDIP structure into the lib/silccore/id.h and
1732           replaced the old `ip' fields from all SILC ID's to that type.
1733           This is a step towards IPv6 support.
1734
1735           The silc_id_get_len takes now the ID as an extra argument.
1736           The silc_id_id2str, silc_id_str2id and silc_id_dup now supports
1737           both IPv4 and IPv6 based ID's.
1738
1739           The affected files are lib/silccore/id.[ch] and other files
1740           around the tree using these routines.
1741
1742         * Removed the ID length arguments in server from various 
1743           silc_server_send_notify_* routines -> they are not needed 
1744           anymore.
1745
1746 Sat May  5 13:56:33 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1747
1748         * Fixed memory leak in silc_encode_pem_file in the file
1749           lib/silcutil/silcutil.c.
1750
1751 Thu May  3 21:23:50 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1752
1753         * Check minor version as well in the SKE.  Affected files are
1754           silcd/protocol.c and lib/silcclient/protocol.c.
1755
1756         * Added --identifier option to the server so that an identifier
1757           can be when creating the public key for the server.  Affected
1758           file is silcd/silcd.c.
1759
1760         * Fixed minor decoding bug in silc_pkcs_decode_identifier in
1761           lib/silccrypt/silcpkcs.c.
1762
1763 Wed May  2 20:50:49 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1764
1765         * Register default ciphers and stuff when using -C option with
1766           the server.  Affected file sildc/silcd.c.
1767
1768         * Put back the servers public key filename format, it is better
1769           than the new one.  For now, the client keys are saved with the
1770           new filename format.  The affected file silc/client_ops.c.
1771
1772         * Implemented the Cipher API for the rest of the ciphers that
1773           did not implement it or implemented it the wrong way.
1774
1775 Wed May  2 13:31:26 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1776
1777         * Register default ciphers and stuff when using the -S option
1778           in the client.  Affected file silc/silc.c.  Same also when
1779           creating new key pair with -C option.
1780
1781 Tue May  1 14:18:13 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1782
1783         * Fixed the silc_verify_public_key client operation function to
1784           save the public keys differently.  The fingerprint is now 
1785           used as filename and not the hostname.  This way also the
1786           client keys are saved uniquely and not with hostnames.  The
1787           affected file is silc/client_ops.c.
1788
1789         * Trimmed the silc_hash_fingerprint function to remove extra
1790           whitespaces from the end of the fingerprint.  The affected
1791           file is lib/silccrypt/silchash.c.
1792
1793         * Updated TODO.
1794
1795         * Added silc_cipher_register_default function to register all
1796           default ciphers.  It can be used when configuration files
1797           does not exist and the application does not want any specific
1798           ciphers in any specific order.
1799
1800           The SilcDList is now used as silc_cipher_list dynamically
1801           allocated cipher list.  Removed the static list all together
1802           and now all ciphers must be allocated to the dynamic list.
1803           The silc_cipher_alloc routine was changed to check only the
1804           dynamic list.
1805
1806           All silc_cipher_* routines that used to return int returns
1807           now bool.
1808
1809           The affected files lib/silccrypt/silccrypt.[ch].
1810
1811         * The same thing was done to silc_hash_* as for silc_cipher_*
1812           routines.  Affected files lib/silccrypt/silchash.[ch].
1813
1814         * The same thing was done to silc_pkcs_* as for silc_cipher_*
1815           routines.  Affected files lib/silccrypt/silcpkcs.[ch].
1816           Added also silc_pkcs_[un]register[_default] functions.
1817           Removed the data_context from the PKCS API.
1818
1819         * Added silc_hmac_register_default function to register default
1820           hmacs.  Affected files lib/silccrypt/silchmac.[ch].  Added also
1821           SILC_ALL_HMACS macro that can be used with silc_hmac_unregister
1822           to unregister all hmacs at once.
1823
1824         * Register the default ciphers, hash functions, PKCSs and HMACs
1825           if client's configuration file does not exist.  The affected
1826           file silc/silc.c.
1827
1828         * The client did not load the hash functions from the SIM
1829           modules at all.  Added support for this.  Affected file is
1830           silc/clientconfig.c.
1831
1832         * When decoding public key with silc_pkcs_public_key_decode, check
1833           the supported algorithm only if PKCS are registered.  Affected
1834           file lib/silccrypt/silcpkcs.c.  The same was done with the
1835           silc_pkcs_private_key_decode.
1836
1837         * Fixed the SILC List routines to keep the list always in order.
1838           It used to change the list's order when traversing the list but
1839           not it preserves the order.  Affected file lib/trq/silclist.h.
1840
1841 Mon Apr 30 17:29:03 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1842
1843         * Added the client library to use the SilcSocketConnection's
1844           reference counter (by silc_socket_dup) to prevent the bug that
1845           the socket object may be freed underneath async operation.
1846
1847         * The name resolv library checking fixes in the configure.in.pre.
1848           The patch by salo.
1849
1850         * Created new version of the protocol drafts for future
1851           development. The -03 drafts are the ones that will be changed
1852           in the trunk now and the -02 will remain as they are.
1853
1854         * Send list of CUMODE notifys to the router when announcing
1855           the channel users to the router.  Affected file silcd/server.c.
1856           If the router receiving channel founder CUMODE for a channel
1857           that already has channel founder it will send CUMODE notify
1858           to the sender to remove the channel founder rights from the
1859           announced client.  Affected file silcd/packet_receive.c.
1860
1861         * The CUMODE notify may now use Server ID as well as the entity
1862           who changes the mode.  Updated protocool specs.
1863
1864         * Updated INSTALL and README files.
1865
1866 Sun Apr 29 23:17:50 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1867
1868         * New web pages in the http://silc.pspt.fi.  The pages was
1869           designed by salo.
1870
1871         * Updated CREDITS.
1872
1873 Sun Apr 29 13:33:41 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1874
1875         * Implemented the [DenyConnectin] config section in the server.
1876           Added silc_server_config_denied_conn to check whether incoming
1877           connection is denied.  Affected file silcd/serverconfig.[ch].
1878
1879         * Do not check the ports when checking the incoming configuration
1880           data if the port is 0, meaning any.  Affected file is
1881           silcd/serverconfig.c.
1882
1883 Fri Apr 20 18:58:43 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1884
1885         * Fixed buffer overflow in silc_string_compare in the file
1886           lib/silcutil/silcutil.c.
1887
1888         * Fixed double free in silc_server_command_leave in the file
1889           silcd/command.c.
1890
1891 Fri Apr 20 14:00:11 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1892
1893         * Fixed the version checking in the server.  Affected file is
1894           silcd/protocol.c.
1895
1896 Thu Apr 19 19:52:46 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1897
1898         * Fixed the configuration data fetching when accepting new
1899           connections in the server.  Affected file silcd/server.c.
1900
1901 Thu Apr 19 11:40:20 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1902
1903         * Added `sender_entry' argument to the function
1904           silc_server_packet_relay_to_channel so that we can check
1905           whether some destination actually belongs to the same route
1906           the sender belongs (ie, we must not resend the packet to the
1907           sender).  Affected file silcd/packet_send.[ch].
1908
1909         * Added `servername' field to the SilcClientEntry in the server
1910           to hold the name of the server where client is from.  Affected
1911           file is silcd/idlist.h.
1912
1913 Wed Apr 18 22:19:03 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1914
1915         * Moved the channel message encrypting in the router betwen
1916           router connections from silc_server_channel_message to the
1917           silc_server_packet_relay_to_channel since we want to check
1918           whether we have anybody channel before encrypting anything.
1919           Affected files silcd/packet_[receive/send].c.
1920
1921 Tue Apr 17 21:18:19 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1922
1923         * Fixed the [AdminConnection] server config section to support
1924           multiple entries.  Affected file silcd/serverconfig.c.
1925
1926         * Added support into the server to check the validity of the
1927           incoming connection before executing any KE or authentication
1928           protocols.
1929
1930         * The connection configuration is now saved to the KE and 
1931           connection auth protocol contexts and not fetched anymore in 
1932           the protocol.  Affected files silcd/server.c, silcd/protocol.[ch].
1933
1934         * The local hosts listenning address and port is also resolved
1935           now when starting the server.  We want to have the socket object
1936           to include the real address and port for the listener.  Added
1937           new function silc_net_check_local_by_sock into the files
1938           lib/silcutil/silcnet.[ch].
1939
1940         * Fixed a broadcast bug in server -> do not broadcast if we
1941           are standalone.
1942
1943         * Fixed a routing bug.  Do not route broadcast packets ever.
1944           Broadcast packets must be processed always and not routed since
1945           they may be destined to some other host than yourself and thus
1946           would get routed without no good reason.  Affected file is
1947           silcd/server.c.
1948
1949         * Added function silc_server_config_is_primary_route to check
1950           whether primary router connection has been configured (a router
1951           configuration that we are initiating).  If there is not, we 
1952           will assume that there is only two routers in the SILC network
1953           and we will use the incoming router connection as our primary
1954           route.  Affected files silcd/serverconfig.[ch], silcd/server.c.
1955
1956         * Changed the order of the broadcasting.  Broadcast _after_ the
1957           packet has been processed not before.  Affected file is
1958           silcd/server.c.
1959
1960         * Fixed a [ClientConnection] parsing bug.  The port was never
1961           parsed correctly thus resulting to port 0.  Affected file
1962           silcd/serverconfig.c.
1963
1964         * Fixed silc_server_send_notify_args -> it ignored the `broadcast'
1965           argument and did not set the broadcast packet flag.  Affected
1966           file silcd/packet_send.c.  Fixed same bug in the function
1967           silc_server_send_notify as well.
1968
1969         * If we receive NEW_ID packet for our own ID in the server, ignore
1970           the packet.
1971
1972 Mon Apr 16 12:10:33 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1973
1974         * Updated TODO.
1975
1976         * Removed the nickname from the Private Message Payload.
1977           Updated the code and the protocol specs.
1978
1979         * Updated protocol specs for submitting to the IETF.
1980
1981         * Tweaked the Random Number Generator a bit.  Affected file
1982           lib/silccrypt/silcrng.c.  Exported a new function
1983           silc_rng_[global]_add_noise which can be used to add more
1984           noise to the RNG.
1985
1986 Sat Apr 14 16:21:32 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1987
1988         * Do not parse packets with different timeout when protocol
1989           is active -> may cause problem with rekey.  Affected file
1990           silcd/server.c.
1991
1992         * When server receives signoff notify it must not create
1993           new channel key if the client is on any channels since the
1994           sender of the signoff notify will create it.
1995
1996 Fri Apr 13 17:12:46 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
1997
1998         * Added printing of error messages during SKE protocol from the
1999           failure packet sent by server during SKE.  Affected file
2000           silc/client_ops.c.
2001
2002         * Removed the client's failure_callback handling with timeout
2003           and handle it immediately when received.
2004
2005         * The SKE library returned wrong type in SUCCESS and FAILURE 
2006           packets.  They must be 32 bit MSB not 16 bit MSB.
2007
2008 Fri Apr 13 00:09:08 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2009
2010         * Ok, rewrote the logic of the re-key and now it seems to work.
2011           I tested it on high traffic with frequent re-keys without
2012           problems.  Added hmac_receive (and renamed hmac to hmac_send)
2013           in SilcClientConnection in lib/silcclient/client.h and
2014           in SilcIDListData in silcd/idlist.h.  Also, removed the
2015           SilcPacketParserContext's cipher and hmac fields as they are
2016           not needed anymore and actually caused some problems when
2017           the ciphers and hmac's changed underneath the packet parser.
2018
2019 Thu Apr 12 14:42:51 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2020
2021         * If re-key protocol is active then process the incoming packets
2022           synchronously since we must assure that icoming packets encrypted
2023           with the old key is processed before the new keys is set to
2024           use.  This is true other packets than for REKEY packets.
2025           Affected file silcd/server.c.  The same was done to client library
2026           as well, affected file lib/silcclient/client.c.
2027
2028 Thu Apr 12 12:01:52 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2029
2030         * Fixed bug in client and server to accept the force send if
2031           the packet is send from silc_[server/client]_packet_process
2032           function.  Otherwise the packets are never delivered, oops.
2033
2034 Wed Apr 11 22:10:15 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2035
2036         * Disable force sending of packets when REKEY protocol is active.
2037           We must assure that no packet is sent directly when rekey is
2038           performed.  All packets must be sent through packet queue.
2039           Added macro SILC_SERVER_IS_REKEY to silcd/server.h and
2040           SILC_CLIENT_IS_REKEY to lib/silcclient/client.h.  Affected
2041           function is silc_[server/client]_packet_send_real to check
2042           the situation.
2043
2044         * Replaced the SIM paths from example config files to 
2045           /usr/local/modules.  Also, make install creates now
2046           /usr/local/silc/logs directory to hold all the SILC server
2047           logs.
2048
2049 Wed Apr 11 16:59:59 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2050
2051         * Made the configure.in.pre work on Solaris.  Patch by salo.
2052
2053         * Made all ciphers compatible with non-x86 machines.  Defined
2054           CBC mode macros into lib/silccrypt/ciphers_def.h.
2055
2056 Tue Apr 10 20:32:44 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2057
2058         * Fixed the make install.
2059
2060 Tue Apr 10 16:20:34 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2061
2062         * When MAC computation fails the silc_packet_decrypt returned 0
2063           even though it was supposed to return -1.  Fixed this.  The
2064           affected file is lib/silccore/silcpacket.c.
2065
2066         * Do not replace the config files in /etc/silc (in make install)
2067           if they already exist.  Affected file ./Makefile.am.
2068
2069         * Do not send re-key packets immediately but through packet queue.
2070           Affected file silcd/protocol.c and lib/silcclient/protocol.c.
2071
2072         * Changed silc_net_check_host_by_sock to return FALSE if the
2073           IP/DNS could not be resolved.  Though, it returns the IP address
2074           now even if it could not resolve it (but returns also FALSE).
2075           Affected file lib/silcutil/silcnet.[ch].
2076
2077 Mon Apr  9 21:54:44 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2078
2079         * Added silc_pkcs_decode_identifier to decode the public key's
2080           identifier.  Affected file lib/silccrypt/silpkcs.[ch].
2081           Added also silc_pkcs_free_identifier.  Added also new context
2082           SilcPublicKeyIdentifier.
2083
2084         * Added -S option to the silc client.  It is used to dump the
2085           contents of the specified public key file.
2086
2087         * Changed the PKCS api to return the public key length when
2088           setting the public key.
2089
2090         * Fixed a fatal bug in the public and private key file loading.
2091           Affected file lib/silccrypt/silcpkcs.c.
2092
2093         * Execute the packet parsing for client with zero (0) timeout
2094           if the protocol is active.  Affected file silcd/server.c.
2095
2096 Sun Apr  8 19:30:56 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2097
2098         * Made the key generation options to the silcd program.  Added
2099           -C option, equivalent to client's option.
2100
2101         * Added new [ServerKeys] config section to the server.  It
2102           configures the server's public and private key.
2103
2104         * Defined generic Public Key Payload into the protocol
2105           specification to send specific type of public keys and
2106           certificates.
2107
2108         * Defined new command SILC_COMMAND_GETKEY to fetch a client's
2109           public key or certificate.
2110
2111         * Implemented the GETKEY command to the server and to the
2112           client library and on user interface.
2113
2114 Sun Apr  8 01:37:21 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2115
2116         * Made preliminary `make install' work.
2117
2118 Thu Apr  5 17:42:30 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2119
2120         * Added SilcServerRekey context into silcd/idlist.h.
2121
2122         * Added the PFS support as defined in the specification to the
2123           SKE protocol.  Affected files lib/silcske/*.c.
2124
2125         * Added `ske_group' field to the SilcServerRekey context to hold
2126           the number of the SKE group that is used with PFS in re-key.
2127           Affected file silcd/idlist.h.
2128
2129         * Added PFS re-key support to the server.  Affected file is
2130           silcd/protocol.c.
2131
2132         * Added silc_protocol_cancel to cancel execution of the next
2133           state of the protocol.  Affected file is
2134           lib/silccore/silcprotocol.[ch].
2135
2136         * Added the re-key support with and without PFS to the client
2137           library.  Re-key is performed once in an hour, by default.
2138
2139           Added new protocol type SILC_PROTOCOL_CLIENT_REKEY.
2140           Added silc_client_rekey_callback and silc_client_rekey_final.
2141           Affected files are lib/silcclient/protocol.[ch] and
2142           lib/silcclient/client.[ch].
2143
2144         * Removed the `hmac_key' and `hmac_key_len' fields from the
2145           SilcClientConnection structure; not needed.  Affected file is
2146           lib/silcclient/client.h.
2147
2148         * Updated TODO.
2149
2150 Wed Apr  4 16:32:31 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2151
2152         * Do not ask whether user wants to use the negotiated private key
2153           for private messages, just use it.  Affected file is 
2154           silc/local_command.c.
2155
2156         * Added `send_enc_key' and `enc_key_len' fields to the 
2157           SilcIDListData structure since they are needed in the re-key
2158           phase.  Affected file is silcd/idlist.[ch].
2159
2160         * Implemented the simple re-key protocol into the server.
2161           Affected files silcd/server.c and silcd/protocol.[ch].  The
2162           re-key will be performed once in an hour, by default.
2163
2164           Added new protocol type SILC_PROTOCOL_SERVER_REKEY.
2165           Added silc_server_rekey, silc_server_rekey_callback and
2166           silc_server_rekey_final.
2167
2168         * Removed Tunneled flag from the protocol.  Updated the code
2169           and the specifications.
2170
2171         * Adde `pfs' field to the SilcIDListData to indicate whether
2172           the PFS is to be performed in the re-key.  Affected file is
2173           silcd/idlist.h.
2174
2175 Tue Apr  3 21:52:42 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2176
2177         * Defined uint8, int8, uint16, int16, uint32, int32, uint64 and
2178           int64 of at least the xintXX size.  If void * is less that 4
2179           bytes uint32 * will be used.  Defined bool as boolean.
2180
2181         * Changed _ALL_ unsigned long and unsigned int to uint32, 
2182           unsgined short to uint16 in the source tree.
2183
2184         * Fixed a fatal bug in silc_server_remove_clients_by_server.  Do
2185           not handle clients that has entry->data.registered == FALSE.
2186           They are not in the network anymore.  Affected file is
2187           silcd/server.c.
2188
2189 Tue Apr  3 16:39:19 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2190
2191         * Implemented the sending of the SERVER_SIGNOFF notify in the
2192           server.  Affected file is silcd/server.c.
2193
2194         * Added silc_server_send_notify_args into silcd/packet_send.[ch].
2195           Added also silc_notify_payload_encode_args into the
2196           lib/silccore/silcnotify.[ch].
2197
2198         * Implemented ther SERVER_SIGNOFF notify handling in the server.
2199           Affected file silcd/packet_receive.c.
2200
2201         * Implemented the SERVER_SIGNOFF notify handling in the client
2202           library.  Affected file lib/silcclient/client_notify.c.  Also,
2203           implemnted the printing of the SERVER_SIGNOFF info to the
2204           application.  Affected file silc/client_ops.c.
2205
2206         * The silc_idlist_del_server now returns TRUE or FALSE to indicate
2207           if the deleting was successful.  Affected file silcd/idlist.[ch].
2208
2209         * Added support for public key authentication in the connection
2210           authentication protocol in the client library.  Affected file
2211           lib/silcclient/protocol.c.
2212
2213         * Changed the server's silc_idlist_get_clients_by_* interface
2214           to support already allocated array so that new entries may be
2215           added to pre-allocated array.  Affected file silcd/idlist.[ch].
2216           This fixes some bugs with WHOIS, WHOWAS and IDENTIFY commands
2217           and command replies.
2218
2219         * All command reply functions in the server now calls the 
2220           pending command callback even if error occured.  This way the
2221           error will be delivered to the client as well.  Affected files
2222           silcd/command.c and silcd/command_reply.c.
2223
2224         * Fixed INFO command to return local server's info if no server
2225           was provided.  Affected file lib/silcclient/command.c.
2226
2227         * Removed RESTART command for good.  Updated the code and the
2228           protocol specs.
2229
2230         * Rewrote parts of the task system.  It is a bit simpler now.
2231           Removed unsued task priorities. The affected files are
2232           lib/silcutil/silctask.[ch].
2233
2234 Mon Apr  2 20:02:33 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2235
2236         * Moved the USERS printing from the library to the application.
2237           Affected files lib/silcclient/command.c and silc/client_ops.c.
2238
2239 Mon Apr  2 13:13:23 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2240
2241         * Updated TODO.
2242
2243         * Added channel key re-key support.  The re-key is perfomed
2244           only by the router and is done once in an hour.  Added `rekey'
2245           field to the SilcChannelEntry in the server.  Affected files
2246           silcd/server.c and silcd/idlist.h.
2247
2248         * Added silc_task_unregister_by_context into the file
2249           lib/silcutil/silctask.[ch].
2250
2251 Sun Apr  1 19:49:34 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2252
2253         * Added SILC_UMODE_GONE mode to indicate when the client is not
2254           present in the SILC network.  Added also support to the local
2255           command AWAY that will set this mode.  Added support of showing
2256           "xxx is gone" in WHOIS command.  The USERS command shows the
2257           gone status as well.
2258
2259         * Fixed setting server and router operator privileges in the
2260           server's UMODE command.  Affected file silcd/command.c.
2261
2262         * Merged the SKE KE1 and KE2 payloads into one payload.  The
2263           new KE payload is equivalent to the old KE2 payload.
2264
2265           Cleaned up the SKE Start Payload parsing.  It now uses the
2266           simple buffer unformatting to do the parsing.  A lot faster
2267           now.
2268
2269           Added new Mutual Authentication flag (SILC_SKE_SP_FLAG_MUTUAL)
2270           to the SKE that is used to indicate whether both of the SKE
2271           parties should perform authentication.  By default only the
2272           responder performs authentication.  By setting this flag also
2273           the initiator must do authentication.  By default it is unset
2274           since in normal SKE case, client to server connection, only
2275           the responder should do authentication.  When doing SKE between
2276           two clients both should perform authentication.  Updated the
2277           code and the protocol specs.
2278
2279         * A little fix to IDENTIFY command in the server.  Search the
2280           client first by hash not nickname.  Affected file is 
2281           silcd/command.c.
2282
2283         * Fixed the silc_client_close_connection to support closing
2284           the client to client connections wihtout deleting too much
2285           data.  Affected file lib/silcclient/client.c.
2286
2287         * Fixed a fatal bug in server and client; if KE1 or KE2 packets
2288           are received if protocol used to be active but is not anymore
2289           the application would crash due to NULL pointer dereference.
2290           Affected files silcd/server.c and lib/silcclient/client.c.
2291
2292         * Added `hash' field to the SilcClientConnection to include
2293           the hash function negotiated in the SKE protocol.
2294
2295         * Added new channel mode SILC_CMODE_FOUNDER_AUTH that is used
2296           to set the channel founder authentication data.  A client can
2297           claim the founder rights later by providing the authentication
2298           data to the CUMODE command using SILC_CUMODE_FOUNDER mode.
2299           This way the channel founder can regain the channel founder
2300           privileges even it is left the channel.  This works only on
2301           local server and the client must be connected to the same
2302           server to be able to regain the founder rights.  Updated the
2303           protocol specs accordingly.
2304
2305           Added support to the CMODE command in the client to set the
2306           founder auth data.  Read the README to see how to set it.
2307
2308           Added support to the CUMODE command to claim the founder
2309           rights.  Read the README to see how to do it.
2310
2311           Added support for the founder authentication to the Channel
2312           Entry in the server.  Affected file silcd/idlist.h.
2313
2314           Added support for the SILC_CMODE_FOUNDER_AUTH mode in the
2315           server's CMODE command.  Affected file silcd/command.c.
2316
2317         * Added the following new functions into lib/silccore/silcauth.[ch]:
2318           silc_auth_get_method and silc_auth_get_data.    
2319
2320         * The server now saves the remote hosts public key to the
2321           SilcIDListData pointer.  Affected file silcd/protocol.c.
2322
2323         * The normal server now does not remove the channel entry from
2324           the cache if the founder authentication data is set.  It used
2325           to remove it if the founder was the last one on the channel on 
2326           the server and left the channel.  The auth data is saved and
2327           if the channel is re-joined later the old entry is used with
2328           the old auth data.  Affected files silcd/command_reply.c and
2329           silcd/server.c.
2330
2331         * Removed the `pkcs' field from the SilcIDListData structure
2332           in the server; it is not used.  Affected file silcd/idlist.h.
2333
2334 Sat Mar 31 15:38:36 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2335
2336         * Fixed packet processing on slow links.  Partial packets were
2337           never re-processed because the incoming data buffer was cleared
2338           by the application.  Application must not directly clear the
2339           sock->inbuf, the packet processing routines handle it.  Fixed
2340           this in client library and in server.
2341
2342 Fri Mar 30 16:35:27 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2343
2344         * Fixed the WHOIS and IDENTIFY send reply function to really
2345           check whether to send list or just one entry.  Affected file
2346           silcd/command.c.
2347
2348         * Cleaned up the LEAVE command's channel key distribution.  The
2349           affected file silcd/command.c.
2350
2351         * Changed CMODE_CHANGE's <Client ID> to <ID Payload> as server
2352           can enforce the channel mode as well.  In that case the ID
2353           includes the ID of the server.  The code now enforces the
2354           mode change if the router have different mode than the server.
2355
2356         * The notify client operation with CMODE_CHANGE notify can now
2357           return NULL client_entry pointer if the CMODE was not changed
2358           by client.  Application must check for this.
2359
2360         * Added <Server ID> argument to INFO command to support server
2361           info fetching by Server ID.
2362
2363         * Added silc_server_announce_get_channel_users to get assembled
2364           packets of channel users of the specified channel.  Affected
2365           file silcd/server.[ch].
2366
2367         * Fixed bug in CHANNEL_CHANGE notify in the server.  The new ID
2368           was freed underneath the ID Cache.
2369
2370         * Re-announce clients when the server received CHANNEL_CHANGE
2371           notify from the router.  Affected file silcd/packet_send.c.
2372
2373 Thu Mar 29 19:10:28 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2374
2375         * Fixed a fatal bug when client does /join 1 2 3 4 5 6 the server
2376           crashed since it did not handle the fact that there is no cipher
2377           called "3" and didn't check the error condition.  Now fixed.
2378
2379         * Added SILC_MESSAGE_FLAG_REQUEST message flag as generic request
2380           flag.  It can be used to send message requests.
2381
2382 Thu Mar 29 12:26:25 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2383
2384         * Implemented the RESTART command in the client.
2385
2386         * Added SILC_MESSAGE_FLAG_NOTICE message flag for informational
2387           notice type messages.  Added notice printing to the user
2388           interface.
2389
2390         * The channel keys are not re-generated if the channel's mode
2391           is PRIVKEY, ie private key on the channel exists.  Affected
2392           files silcd/server.c and silcd/command.c.
2393
2394         * Fixed a little bug in channel message delivery when channel
2395           private keys are set in the server.  Affected file is
2396           silcd/packet_send.c.
2397
2398         * Changed the setting on channel->on_channel = TRUE from the
2399           silc_client_save_channel_key to the JOIN command reply.  The
2400           key payload is not received if the private channel key is set.
2401           Affected file lib/silcclient/command_reply.c and the
2402           lib/silcclient/client_channel.c.
2403
2404         * When the CMODE_CHANGE notify is sent and the channel private
2405           key mode is removed the channel key must be re-generated in
2406           other cells as well.  Added this support for the router in the
2407           silcd/packet_receive.c.
2408
2409         * Added new local command NOTICE to send notice message on
2410           channel.  Affected file silc/local_command.[ch].
2411
2412 Wed Mar 28 23:55:54 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2413
2414         * Added new local command ME to the client.  It is used to send
2415           message to a channel with SILC_MESSAGE_FLAG_ACTION to indicate
2416           some action.  Affected file silc/local_command.[ch].
2417
2418         * Changed channel_message and private_message client operations 
2419           to deliver the message flags to the application.  Added also
2420           the `flags' arguments to the silc_client_send_channel_message
2421           and silc_client_send_private_message functions.  Affected file
2422           silcapi.h.
2423
2424 Wed Mar 28 20:50:47 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2425
2426         * Redefined the Private Message Payload to support private message
2427           keys and to support the new private message flags.  Updated
2428           the protocol specs.  Flags makes it possible to have for example
2429           CTCP style messages.
2430
2431         * Added new type SilcPrivateMessagePayload and defined an API
2432           for it in the lib/silcclient/silcprivate.[ch].
2433
2434         * Tested private message private keys successfully.  Tested the
2435           private message key set, unset and list commands with the new
2436           KEY command.
2437
2438         * Redefined the Channel Message Payload to include the channel
2439           message flags (equal with private message flags) to support
2440           for example CTCP style messages.
2441
2442         * Defined some of the message (for channel and private message)
2443           flags.  Updated the protocol specs and added the flags to the
2444           lib/silccore/silcchannel.h.  The type is SilcMessageFlags.
2445
2446 Wed Mar 28 15:52:36 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2447
2448         * Added SilcKeyAgreementStatus type to the key agreement routines
2449           to indicate the current status and error if one occured.
2450           The status types are defined in the lib/silcclient/silcapi.h.
2451
2452         * Added new local command KEY that is used to set and unset private
2453           keys for channels, set and unset private keys for private messages
2454           with remote clients and to send key agreement requests and
2455           negotiate the key agreement protocol with remote client.  The
2456           key agreement is supported only to negotiate private message keys,
2457           it currently cannot be used to negotiate private keys for channels,
2458           as it is not convenient for that purpose.
2459
2460         * Fixed a minor pending callback setting bug in the function
2461           silc_client_get_client_by_id_resolve, now the function works.
2462           Affected file lib/silcclient/idlist.c.
2463
2464         * Added function silc_net_get_local_port to get local bound
2465           port by socket.  Added to lib/silcutil/silcnet.[ch].
2466
2467         * Added `sockets' and `sockets_count' fields to the SilcClient
2468           object.  They hold the sockets of the listenning sockets in
2469           the client.  Listenning sockets may be for example the key 
2470           agreement server.  Affected file lib/silcclient/client.[ch].
2471           Added functions the silc_client_add_socket and the
2472           silc_client_del_socket.  They are exported to the application
2473           as well.
2474
2475         * Added ~./silc/clientkeys to support other client's public keys.
2476
2477         * Renamed verify_server_key client operation to verify_public_key
2478           and added one argument to indicate the type of the connection
2479           (server, client etc.).
2480
2481 Tue Mar 27 22:22:38 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2482
2483         * Added silc_server_connection_auth_request to handle the
2484           incoming CONNECTION_AUTH_REQUEST packet.  Affected file is
2485           silcd/packet_receive.[ch].
2486
2487         * Added silc_server_send_connection_auth_request into the
2488           silcd/packet_send.c to send the connection auth request packet.
2489
2490         * Cleaned up the silcd/protocol.c a bit and fixed some memory
2491           leaks.
2492
2493         * Fixed the public key authentication in responder side in the
2494           server.  The `auth_data' pointer includes the SilcPublicKey
2495           not the path to the public key.  Affected file silcd/protocol.c.
2496
2497         * Implemented the public key authentication in the initiator side
2498           in the server.  Affected file silcd/protocol.c.
2499
2500         * Removed the [RedirectClient] config section from the server
2501           configuration.  Is not needed and I don't want to implement it.
2502
2503 Tue Mar 27 12:49:56 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2504
2505         * Cleaned up the CMODE command in the server.  It now works
2506           correctly and supports all the modes defined in the protocol.
2507           Affected file is silcd/command.c.
2508
2509         * Added `hmac_name' field to the SilcChannelEntry in the server
2510           to hold the default HMAC of the channel.  It can be set when
2511           creating the channel (with JOIN command).  Affected files
2512           silcd/idlist.[ch].
2513
2514         * Added <cipher> and <hmac> argument to the CMODE_CHANGE notify
2515           type to indicate the change of the current cipher and hmac
2516           on the channel.  Client can safely ignore the <cipher> argument
2517           (if it chooses to do so) since the CHANNEL_KEY packet will 
2518           force the channel key change anyway.  The <hmac> argument is
2519           important since the client is responsible of setting the new
2520           HMAC and the hmac key into use.
2521
2522         * Fixed the CMODE command in the client library as well.
2523
2524         * Tested CMODE command in router environment successfully.
2525
2526 Mon Mar 26 14:39:48 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2527
2528         * Show the version of the remote client (or server) when connecting
2529           to the server.  It is logged to the log file.  Affected file
2530           is silcd/protocol.c.
2531
2532         * Fixed the KILLED notify handling in the client library.  The
2533           client must be removed from all channels when receiving the
2534           KILLED notify.
2535
2536           Also, do not remove the client entry when giving the KILL 
2537           command but when the KILLED notify is received.
2538
2539         * Removed silc_idlist_find_client_by_nickname from the server.
2540           Not needed anymore.  Affected files silcd/idlist.[ch].
2541
2542         * Implemented the CHANNEL_CHANGE notify type handling to the
2543           server.  Affected file silcd/server.c.
2544
2545         * Updated TODO.
2546
2547 Mon Mar 26 12:11:14 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2548
2549         * Added silc_server_send_notify_invite to send the INVITE
2550           notify between routers.
2551
2552         * Implemented the INVITE command correctly to the server.
2553
2554         * Implemented the INVITE notify type handling in the server.
2555
2556         * Implemented the INVITE command to the client library and on the
2557           user interface.
2558
2559 Sun Mar 25 20:27:09 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2560
2561         * Added function silc_server_get_client_resolve to find the
2562           client entry by ID from all ID lists and then resolve it
2563           (using WHOIS) if it cannot be found.  Affected file is
2564           silcd/server.[ch].
2565
2566 Sun Mar 25 13:52:51 EEST 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2567
2568         * Implemented the BAN command to the client library.
2569
2570         * The JOIN command in the server now checks the invite list
2571           and the ban list.
2572
2573         * Changed the silc_command_reply_payload_encode_va and the
2574           silc_command_payload_encode_va to support that if argument is
2575           NULL it ignores and checks the next argument.  Affected file
2576           lib/silccore/silccommand.c.
2577
2578         * Added silc_server_send_notify_ban to send the BAN notify
2579           type between routers.
2580
2581         * Chaned the silc_notify_payload_encode to support that if 
2582           argument is NULL it ignores and checks the next argument.
2583           Affected file lib/silccore/silcnotify.c.
2584
2585         * Tested ban lists in router environment successfully.
2586
2587 Sat Mar 24 14:47:25 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2588
2589         * Implemented BAN command to the server, in silcd/command.[ch].
2590
2591         * Removed the BAN and INVITE_LIST modes from the CMODE command
2592           in the server code.
2593
2594         * Added function silc_string_match to regex match two strings.
2595           Affected files lib/silcutil/silcutil.[ch].
2596
2597 Fri Mar 23 22:02:40 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2598
2599         * Redefined parts of the SilcChannelEntry in the server to support
2600           the new ban and invite lists.
2601
2602 Fri Mar 23 16:25:11 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2603
2604         * Redefined the INVITE command.  The same command can be used to
2605           invite individuals to the channel but also to manage the invite
2606           list of the channel (to add to and remove from the invite list).
2607           Updated the protocol specs.
2608
2609         * Added new command SILC_COMMAND_BAN that can be used to manage
2610           the ban list of the channel.  Updated the protocol specs.
2611
2612         * Removed the channel modes: the SILC_CMODE_BAN and the 
2613           SILC_CMODE_INVITE_LIST as they were a bit kludge to be included
2614           in the CMODE command.  The equivalent features are now available
2615           using INVITE and BAN commands.  Updated the protocol specs.
2616
2617         * Added new SILC_NOTIFY_TYPE_BAN notify type to notify routers
2618           in the network about change in the current ban list.  The notify
2619           type is not used by the client.
2620
2621         * Redefined parts of the SILC_NOTIFY_TYPE_INVITE command to 
2622           support the invite lists.
2623
2624 Thu Mar 22 22:52:23 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2625
2626         * Added new function silc_string_regexify that converts string
2627           including wildcard characters into regex string that can
2628           be used by the GNU regex library.  Added into the file
2629           lib/silcutil/silcutil.[ch].
2630
2631           Added silc_string_regex_combine to combine to regex strings
2632           into one so that they can be used as one regex string by
2633           the GNU regex library.  Added into the file
2634           lib/silcutil/silcutil.[ch].
2635
2636           Added silc_string_regex_match to match two strings.  It returns
2637           TRUE if the strings match.  Added into lib/silcutil/silcutil.[ch].
2638
2639 Thu Mar 22 15:29:42 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2640
2641         * Imported GNU regex to the soruce tree into lib/contrib.
2642           Fixed some compiler warning from the regex.c.
2643
2644 Wed Mar 21 15:27:58 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2645
2646         * Fixed MOTD command in the server to work in router environment.
2647
2648         * Fixed the MOTD command in the client library to support
2649           the server argument in the command.
2650
2651         * Added `nickname_len' argument to the silc_idlist_add_client
2652           in the server, as the `nickname' argument may be binary data
2653           (it may be hash).
2654
2655         * Added silc_idlist_get_channels to return all channels from
2656           the ID list.
2657
2658         * Implemented LIST command to the server.  Affected file is
2659           silcd/command.c.
2660
2661         * Implemented the LIST command to the client library and on the
2662           user interface.
2663
2664         * Added [<user count>] argument to the LIST command reply.
2665           With private channels the user count is not shown.
2666
2667         * Updated TODO and README.
2668
2669 Tue Mar 20 21:05:57 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2670
2671         * The client entry's data.registered must be TRUE even with
2672           global client entry on global client list.  The data.registered
2673           is used to check whether the client is anymore in the network,
2674           for example with WHOWAS command so it must be valid.
2675
2676         * Fixed the WHOWAS command in the server.  It now actually works
2677           in router environment.  Added function into silcd/command_reply.c
2678           silc_server_command_reply_whowas_save.
2679
2680         * Added silc_idlist_purge function to the silcd/idlist.c
2681           to periodically purge the ID Cache.
2682
2683         * Fixed INFO command in the server.  It works now in router
2684           environment.  Added <server name> argument to the INFO command
2685           reply.  Updated the protocol specs.
2686
2687         * Fixed minor bug in silc_idcache_purge to not purge if the
2688           expire value is zero.
2689
2690         * Fixed various bugs in WHOIS and IDENTIFY command handling as
2691           they were buggy because of the WHOWAS information.
2692
2693         * Fixed local command MSG to handle the async resolving of 
2694           the remote client properly.  It used to fail the first MSG.
2695           Affected file silc/local_command.c.
2696
2697         * Added `data_len' field to SilcIDCache context.
2698
2699 Tue Mar 20 16:29:00 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2700
2701         * Update TODO.  Todo in commands in the server.
2702
2703 Tue Mar 20 15:45:14 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2704
2705         * Added new notify type SILC_NOTIFY_TYPE_UMODE_CHANGE that is
2706           used by routers as broadcast packet to inform other routers
2707           about the changed user mode.
2708
2709           Implemented the notify handling in the server.  Affected file is
2710           silcd/packet_receive.c.  Added the function 
2711           silc_server_send_notify_umode to the silcd/packet_send.[ch].
2712
2713         * Added new generic Channel Payload and deprecated the New Channel
2714           Payload.  The New Channel Payload is now the generic Channel
2715           Payload.
2716
2717         * Added new argument `mode' to the silc_server_send_new_channel
2718           as it is required in the Channel Payload now.
2719
2720         * Renamed the SilcChannelPayload to SilcChannelMessagePayload
2721           and created a new and real SilChannelPayload to represent the
2722           new generic Channel Payload.  Implemented the encode/decode
2723           for Channel Payload.  Affected file lib/silccore/silcchannel.[ch].
2724
2725         * Added silc_server_get_client_channel_list to return the list
2726           of channels the client has joined for WHOIS command reply.
2727           Affected file silcd/server.[ch].
2728
2729         * Implemented the channel list sending in the WHOIS command reply
2730           in server and in the client.
2731
2732           Implemented the channel list displaying on the user interface
2733           as well.  Affected file silc/client_ops.c.
2734
2735         * Added silc_channel_payload_parse_list to parse list of Channel
2736           Payloads.  It returns SilcDList list of SilcChannelPayloads.
2737           Client for example can use this function to parse the list of
2738           channels it receives in the WHOIS command reply.  The caller
2739           must free the list by calling silc_channel_payload_list_free.
2740           Affected files lib/silccore/silcchannel.[ch].
2741
2742 Mon Mar 19 21:39:15 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2743
2744         * Added one new argument <user mode> to the WHOIS command reply
2745           to return the mode of the user in SILC.  Updated the protocol
2746           specs.
2747
2748           Implemented it to the server and client.
2749
2750 Mon Mar 19 18:43:06 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2751
2752         * Fixed the mode printing on the user interface on joining.
2753           Affected file silc/client_ops.c.
2754
2755         * Implemented the UMODE command and user modes in general to the
2756           client library and to the user interface.
2757
2758         * Implemented the UMODE command to the server.
2759
2760         * The server now sends UNKNOWN_COMMAND error status if client sends
2761           unknown command.  Affected file silcd/command.c.
2762
2763         * All server commands now handle the command identifier the right
2764           way when sending the command reply to the client.  The client can
2765           use to identify the command replies with the identifier.
2766
2767 Mon Mar 19 16:13:07 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2768
2769         * Added silc_server_get_client_route to resolve the route to
2770           the client indicated by the client ID.  Affected file is
2771           silcd/server.[ch].
2772
2773         * Added silc_server_relay_packet as general function to relay
2774           packet to arbitrary destination.  This deprecates functions
2775           like _send_private_message_key, _relay_notify etc.  Affected
2776           file is silcd/packet_send.[ch].
2777
2778           Removed silc_server_send_key_agreement, 
2779           silc_server_send_private_message_key and
2780           silc_server_packet_relay_notify functions from the file
2781           silcd/packet_send.[ch].
2782
2783         * Updated TODO.
2784
2785         * Implemented the SILC_NOTIFY_TYPE_KILLED notify handling in the
2786           server.  Affected file silcd/packet_receive.[ch].
2787
2788         * Implemented the KILL command to the client.  Implemented the
2789           SILC_NOTIFY_TYPE_KILLED notify handling in the client library.
2790           Affected files lib/silcclient/command[_reply].c and
2791           lib/silcclient/client_notify.c.  Implemented the KILL notify
2792           printing in the user inteface.
2793
2794         * Fixed a lot silc_parse_nick memory leaks from the client
2795           library in the file lib/silcclient/command.c.
2796
2797         * Changed the silc_server_send_notify_on_channels's `sender'
2798           argument from SilcSocketConnection to SilcClientEntry to 
2799           check the sender as entry and not as connection object and not
2800           to send to the client provided as argument.  The affected file
2801           is silcd/packet_send.[ch].
2802
2803         * The notify packets that are destined directly to the client used
2804           to not to be processed by the server.  Now changed that and the
2805           server processes all notify packets.  After relaying the packet
2806           to the client the notify packet is processed in the server.
2807
2808         * The silc_server_free_client_data now checks whether there is
2809           pending outgoing traffic for the client and purges the data to
2810           the network before removing the client entry.
2811
2812 Sun Mar 18 21:02:47 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2813
2814         * Added SILC_NOTIFY_TYPE_KILLED notify type.  It is sent when
2815           an client is killed from the SILC Network.  Updated the protocol
2816           specs accordingly.
2817
2818           Added new function silc_server_send_notify_killed to the
2819           silcd/packet_send.[ch].
2820
2821         * Added function silc_server_packet_relay_notify to relay notify
2822           packets that are destined directly to a client.  In this case
2823           the server does not process the notify packets but merely relays
2824           it to the client.  Affected file silcd/packet_send.[ch].
2825
2826           Added also silc_server_packet_process_relay_notify to check
2827           whereto relay the notify.  Affected file is 
2828           silcd/packet_receive.[ch].
2829
2830         * Implemented the KILL command to the server.
2831
2832         * Updated TODO.
2833
2834         * Added the backup schema desgined last fall to the protocol
2835           specs for everyone to see.  The specification is in the
2836           *-spec-xx.txt draft and the packet type definitions for the
2837           backup routers is in *-pp-xx.txt draft.  Thusly, added also
2838           new packet type SILC_PACKET_CELL_ROUTERS.
2839
2840         * A big security problem in the implementation discovered.  The
2841           signoff of an client did not cause new channel key generation
2842           which it of course should've done.  The channel keys must be
2843           always re-generated when client leaves (or signoffs) the channel.
2844           The silc_server_remove_from_channels funtion now handles
2845           the channel key re-generation.
2846
2847         * Added `sender' argument to the silc_server_send_notify_on_channels
2848           to not to send the client provided as argument.  Affected file
2849           silcd/packet_send.[ch].
2850
2851 Fri Mar 16 15:52:49 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2852
2853         * Implemented OPER and SILCOPER commands into the server and
2854           the client library.
2855
2856         * Added silc_auth_verify and silc_auth_verify_data to verify
2857           the authentication directly from the authentication payload.
2858           It supports verifying both passphrase and public key based
2859           authentication.  Affected file lib/silccore/silcauth.[ch].
2860
2861         * Added `hash' field to the SilcIDListData structure.  It is the
2862           hash negotiated in the SKE protocol.  Affected file is
2863           silcd/idlist.[ch].
2864
2865         * Slight redesigning of the SilcAuthPayload handling routines.
2866           Do not send SilcPKCS but SilcPublicKey as argument.
2867
2868         * Implemented the public key authentication support to the
2869           serverconfig.  The public key is loaded from the provided path
2870           and saved as authentication data to void * pointer.  Thus,
2871           changed the unsigned char *auth_data to void *auth_data;
2872
2873         * Fixed SHUTDOWN command to send the reply before the server
2874           is shutdown. :)  Affected file silcd/command.c.
2875
2876         * Fixed fatal bug in CONNECT command.  The hostname was invalid
2877           memory and server crashed.  Affected file silcd/command.c.
2878
2879         * Fixed fatal bug in CLOSE command.  The server_entry became
2880           invalid but was referenced later in the command.  Affected file
2881           silcd/command.c.
2882
2883 Thu Mar 15 12:46:58 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2884
2885         * Fixed fatal bug in failure packet handling.  Server ignored
2886           the failure and thus crashed when it came.
2887
2888         * Updated TODO.
2889
2890 Wed Mar 14 20:37:35 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2891
2892         * Added new SILC_CF_LAG_STRICT command flag that strictly forces
2893           that the command may be executed only once in (about) 2 seconds.
2894           The old SILC_CF_LAG flag is same but allows command bursts up
2895           to five before limiting.
2896
2897           Added the support for CF_LAG and CF_LAG_STRICT flags to the
2898           server code.  Various commands now includes the CF_LAG_STRICT
2899           flag to disallow any kind of miss-use of the command.
2900
2901         * Fixed the silc_buffer_unformat to not to allocate any data
2902           if the length of the data is zero.  It used to allocate the
2903           length + 1.  Affected file lib/silcutil/silcbuffmt.c.
2904
2905 Wed Mar 14 16:10:30 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2906
2907         * Changed the format of AdminConnection configuration section
2908           in the server.  Added username of the admin to the format.
2909           Affected files silcd/serverconfig.[ch].
2910
2911           Added silc_server_config_find_admin into silcd/serverconfig.[ch]
2912           to return admin configuration data by host, username and/or
2913           nickname.
2914
2915 Wed Mar 14 13:18:16 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2916
2917         * Implemented WHOWAS command to the server.  Added the functions:
2918
2919           silc_server_command_whowas_parse,
2920           silc_server_command_whowas_send_reply,
2921           silc_server_command_whowas_from_client and
2922           silc_server_command_whowas_from_server
2923
2924         * Added <Client ID> argument to the WHOWAS command reply.  Updated
2925           the protocol specs accordingly.
2926
2927         * Implemented WHOWAS command and command_reply to the client
2928           library.
2929
2930           Implemented the WHOWAS printing on the user interface.
2931
2932 Tue Mar 13 22:17:34 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2933
2934         * Added new argument to the WHOWAS command reply, the real name.
2935           It is an optional argument.  Updated the protocol specs.
2936
2937         * Added SilcIDCacheDestructor callback that is registered when
2938           the SilcIDCache is allocated.  The callback is called when
2939           an cache entry in the ID Cache expires, or is purged from the
2940           cache.  Added into lib/silccore/idcache.[ch].
2941
2942           Added silc_idlist_client_destructor to the silcd/idlist.[ch]
2943           to destruct the client entries when the cache entry expires.
2944           Other ID Cache's in server and in the client library ignores
2945           the destructor.
2946
2947         * If the ID Cache entry's `expire' field is zero then the entry
2948           never expires.  Added boolean `expire' argument to the
2949           silc_idcache_add function in the lib/silccore/idcache.[ch].
2950           If it is TRUE the default expiry value is used.
2951
2952         * Added silc_server_free_client_data_timeout that is registered
2953           when client disconnects.  By default for 5 minutes we preserve
2954           the client entry for history - for WHOWAS command.
2955
2956 Tue Mar 13 13:26:18 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2957
2958         * Added support to the server to enforce that commands are not
2959           executed more than once in 2 seconds.  If server receives 
2960           commands from client more frequently, timeout is registered
2961           to process the commands.  Affected file silcd/command.c.
2962           Added new function silc_server_command_process_timeout.
2963
2964         * Changed NICK_NOTIFY handling in client library to check that
2965           if the client's nickname was changed, so there is no need to
2966           resolve anything from the server.
2967
2968         * Removed error printing from the WHOIS and IDENTIFY commands.
2969           If error occurs then it is ignored silently in the client library.
2970           The application, however, may map the received error to 
2971           human readable error string.  The application currently maps
2972           the NO_SUCH_NICKNAME error to string.
2973
2974         * Made the command status message public to the application.  Moved
2975           them from lib/silcclient/command_reply.c to 
2976           lib/silcclient/command_reply.h.  The application can map the
2977           received command status to the string with the
2978           silc_client_command_status_message function.
2979
2980         * Added check to the server to check that client's ID is same
2981           as the Source ID in the packet the client sent.  They must
2982           match.
2983
2984 Tue Mar 13 12:49:21 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2985
2986         * Added dist-bzip hook to the Makefile.am to make bzip2
2987           compressed distributions.
2988
2989 Mon Mar 12 18:43:38 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
2990
2991         * Server now enforces the maximum length for the nickname and
2992           the channel as protocol specification dictates.  128 bytes for
2993           nickname and 256 bytes for channel name.
2994
2995         * Moved the WHOIS printing to the application.  The client libary
2996           does not print out the WHOIS information anymore, the application
2997           must do it.  Renamed silc_client_command_reply_whois_print to
2998           the silc_client_command_reply_whois_save.
2999
3000           The client's idle time is also sent to the application now, and
3001           the idle is shown on screen.
3002
3003         * Added silc_client_command_reply_identify_save to save the
3004           received IDENTIFY entries.
3005
3006         * Do not check for channel private keys in message sending and
3007           reception if the channel does not have the PRIVKEY mode set.
3008           Affected file lib/silclient/client_channel.c.
3009
3010 Sun Mar 11 20:25:06 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3011
3012         * Fixed a minor bug if WHOIS and IDENTIFY command parsing that
3013           just surfaced after chaning the JOIN procedure.
3014
3015 Sun Mar 11 14:59:05 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3016
3017         * Added silc_client_get_clients_by_list to get client entries
3018           from Client ID list, that is returned for example by JOIN
3019           and USERS command replies.  The application should use this
3020           function for example when JOIN command reply is received to
3021           resolve the clients already on the channel (library does not
3022           do that anymore as USERS command reply is not used in the JOIN
3023           procedure anymore).  Affected files lib/silcclient/silcapi.h and
3024           lib/silcclient/idlist.c.
3025
3026         * JOIN command reply and USERS command reply returns now SilcBuffer
3027           pointers instead of unsigned char pointers when returning
3028           the client list and mode list.
3029
3030         * Added <Client ID> argument to the JOIN command reply, mainly
3031           for the server to identify for which client the command was
3032           originally sent.  Updated protocol specs accordingly.
3033
3034         * Added SilcDlist private_key pointer to the SilcChannelEntry
3035           in the client to support the channel private keys.  Affected
3036           file is lib/silcclient/idlist.h.
3037
3038         * Added SilcChannelPrivateKey argument to the function
3039           silc_client_send_channel_message so that application can choose
3040           to use specific private ke if it wants to.  If it is not provided,
3041           the normal channel key is used, unless private keys are set. 
3042           In this case the first (key that was added first) is used 
3043           as the encryption key.
3044
3045         * Implemented the support for channel private key handling.
3046           Implemented the following functions:
3047
3048           silc_client_add_channel_private_key,
3049           silc_client_del_channel_private_keys,
3050           silc_client_del_channel_private_key,
3051           silc_client_list_channel_private_keys and
3052           silc_client_free_channel_private_keys
3053
3054           Affected file lib/silcclient/client_channel.c.
3055
3056         * Added the support for the private keys in the channel message
3057           sending and encryption and in the message reception and
3058           decryption.  Affected funtions are
3059           silc_client_send_channel_message and silc_client_channel_message.
3060
3061 Sat Mar 10 21:36:22 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3062
3063         * Added SKE's key verify callback to the client library's
3064           KE protocol context. Affected files lib/silcclient/protocol.[ch].
3065
3066         * Removed the statement that server (or router) must send USERS
3067           command reply when joining to the channel so that the client
3068           knows who are on the channel.  Instead, the client list and 
3069           client's mode list is now sent in the JOIN command reply to the
3070           client who joined channel.  This is better solution.
3071
3072         * Added function silc_server_get_users_on_channel and function
3073           silc_server_save_users_on_channel to the silcd/server.[ch].
3074
3075         * Removed function silc_server_command_send_users from the
3076           silcd/command.c.
3077
3078         * Do not show topic on the client library anymore.  The topic is
3079           sent in the command reply notify to the application and the
3080           application must show the topic now.
3081
3082 Sat Mar 10 00:07:37 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3083
3084         * Added client searching by nickname hash into the IDENTIFY and
3085           WHOIS commands in the server as they were clearly missing from
3086           them.  Affected file is silcd/command.c.
3087
3088         * Fixed a bug in private message receiving in the client library.
3089           The remote ID was freed and it wasn't supposed, now it is
3090           duplicated.
3091
3092 Fri Mar  9 12:40:42 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3093
3094         * Minor fix to the channel payload; allocate the data area, as it
3095           needs to be of specific length.
3096
3097         * If the key agreement port is zero then the operating
3098           system will define the bound port.  Affected files are
3099           lib/silcclient/silcapi.h and lib/silcclient/client_keyagr.c.
3100
3101         * Added new function silc_channel_payload_decrypt into the file
3102           lib/silccore/silcchannel.[ch].
3103
3104         * Moved the channel message etc, check from silc_packet_decrypt
3105           to applications.  The library calls now a generic 
3106           SilcPacketCheckDecrypt callback which is to return TRUE or FALSE
3107           when the packet is either normal or special.  This was done to
3108           allow more wide range of checking that was not allowed when
3109           the code was in library.  Now applications can do virtually any
3110           checks to the packet and return to the library the decision how
3111           the packet should be processed.  Affected files are
3112           lib/silccore/silcpacket.[ch].
3113
3114           Added silc_server_packet_decrypt_check to the server and
3115           silc_client_packet_decrypt_check to the client library.
3116
3117         * Added silc_server_packet_send_srcdest into silcd/packet_send.[ch]
3118           to send with specified source and destination information.
3119
3120         * Channel message delivery between routers was broken after the
3121           channel key distribution was fixed earlier.  The channel key
3122           was used be to distributed to other routers as well which is not
3123           allowed by the protocol.  Now this is fixed and channel keys
3124           really are cell specific and the channel message delivery between
3125           routers comply with the protocol specification.
3126
3127         * Fixed various commands in server to check also the global list
3128           for the channel entry and not just the local list.  The affected
3129           file silcd/command.c.
3130
3131 Thu Mar  8 21:39:03 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3132
3133         * Added assert()s to buffer formatting and unformatting routines
3134           to assert (if --enable-debug) when error occurs.  Affected
3135           file: lib/silcutil/silcbuffmt.c.
3136
3137         * Changed to auto-reconnect to check whether the remote host is
3138           router and register the re-connect timeout if it is.  It used 
3139           to check that whether we are normal server, but router must do
3140           auto-reconnect with another router as well.  Affected file
3141           silcd/server.c.
3142
3143         * Removed the [<key len>] option from CMODE command as the cipher
3144           name decides the key length, nowadays.  See the defined ciphers
3145           from the protocol specification.
3146
3147         * Added [<hmac>] option to the CMODE command to define the HMAC
3148           for the channel.  Added SILC_CMODE_HMAC channel mode.
3149
3150         * Added [<hmac>] option for the JOIN command so that user can
3151           select which HMAC is used to compute the MACs of the channel
3152           messages.
3153
3154         * Added Hmac field to the Channel Message Payload.  The integrity
3155           of plaintext channel messages are now protected by computing
3156           MAC of the message and attaching the MAC to the payload.  The
3157           MAC is encrypted.  Now, it is clear that this causes some
3158           overhead to the size of the packet but rationale for this is that
3159           now the receiver can verify whether the channel message decrypted
3160           correctly and also when private keys are set for the channel the
3161           receiver can decrypt the packet with several keys and check from
3162           the MAC which key decrypted the message correctly.
3163
3164         * Added silc_cipher_encrypt and silc_cipher_decrypt into the
3165           lib/silccrypt/silccipher.[ch].
3166
3167         * Added silc_hash_len to return the digest length into the
3168           lib/silcrypt/silchash.[ch].
3169
3170         * Rewrote parts of Silc Channel Payload interface in the
3171           lib/silccore/silcchannel.[ch].  The encode function now also
3172           encrypts the packet and parse function decrypts it.
3173
3174 Wed Mar  7 20:58:50 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3175
3176         * Fixed a minor formatting bug in the SKE's key material processing.
3177           It actually might have processed the keys wrong way resulting
3178           into wrong keys.
3179
3180         * Redefined the mandatory HMAC algorithms and added new algorithms.
3181           Added hmac-sha1-96 and hmac-md5-96 which are normal hmac-sha1
3182           and hmac-md5 truncated to 96 bits.  The mandatory is now 
3183           hmac-sha1-96.  Rest are optional (including the one that used
3184           to be mandatory).  Rationale for this is that the truncated HMAC
3185           length is sufficient from security point of view and can actually
3186           make the attack against the HMAC harder.  Also, the truncated
3187           HMAC causes less overhead to the packets.  See the RFC2104 for
3188           more information.
3189
3190         * Added new [hmac] configuration section.  The SKE used to use
3191           the hash names (md5 and sha1) in the SKE proposal as HMCAS which
3192           is of course wrong.  The official names that must be proposed in
3193           the SKE are the ones defined in the protocol specification
3194           (hmac-sha1-96 for example).  The user can configure any hmac
3195           using any hash function configured in the [hash] section.  At
3196           least, the mandatory must be configured.
3197
3198           Rewrote the HMAC interface in lib/silccrypt/silchmac.[ch].
3199
3200         * Added HMAC list to the SKE proposal list.  It has now both
3201           hash algorithm list and HMAC list.  This makes the protocol
3202           incompatible with previous versions.  The SKE now seems to work
3203           the way it is supposed to work, for the first time actually.
3204
3205         * Defined plain Hash algorithms to the protocol specification.
3206           Added sha1 and md5.
3207
3208 Tue Mar  6 15:36:11 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3209
3210         * Implemented support for key agreement packets into the server.
3211           Added functions silc_server_key_agreement and
3212           silc_server_send_key_agreement.  Other than these functions,
3213           server has nothing to do with this packet.
3214
3215         * Added support for private message key packets into the server.
3216           Added functions silc_server_private_message_key and
3217           silc_server_send_private_message_key.
3218
3219         * Updated TODO.
3220
3221         * Changed the silc_[client|server]_protocol_ke_set_keys to be
3222           called in the protocol's final callback instead in the END
3223           protocol state.  This makes a little more sense and in the same
3224           time in client we can use the same protocol routines for normal
3225           key exchange and to key agreement packet handling as well.
3226
3227         * Added to both client's and server's KE protocol context the
3228           SilcSKEKeyMaterial pointer to save the key material.  We will
3229           bring the key material to the protocol's final callback by doing
3230           this.  The final callback must free the key material.
3231
3232         * Added SKE's packet_send callback into client's KE protocol
3233           context so that the caller can choose what packet sending function
3234           is used.  This way we can use different packet sending when
3235           doing normal SKE when doing key agreement packet handling (in
3236           the key agreement packet handling we do not want to encrypt
3237           the packets).
3238
3239         * Implemented the responder side of the key agreement routines
3240           in the client.  The client can now bind to specified port and
3241           accept incoming key negotiation.  The key material is passed
3242           to the application after the protocol is over.
3243
3244         * Implemented the processing of incoming Key Agreement packet
3245           in the client.  Added function silc_client_key_agreement to
3246           process the packet.
3247
3248         * Implemented the intiator side of the key agreement routines
3249           in the client.  The client can now initiate key agreement with
3250           another remote client.  The key material is passed to the
3251           application after the protocol is over.
3252
3253         * Created client_keyagr.c to include all the key agreement 
3254           routines.
3255
3256         * Added macro SILC_TASK_CALLBACK_GLOBAL which is equal to the
3257           SILC_TASK_CALLBACK except that it is not static.
3258
3259         * Created client_notify.c and moved the Notify packet handling
3260           from the client.[ch] into that file.
3261
3262         * Created client_prvmsg.c and moved all private message and
3263           private message key routines from the client.[ch] into that file.
3264
3265         * Create client_channel.c and moved all channel message and
3266           channel private key routines from the client.[ch] into that file.
3267
3268         * Changed silc_client_get_client_by_id_resolve to resolve with
3269           WHOIS command instead of IDENTIFY command, in the file
3270           lib/silclient/idlist.c.
3271
3272 Mon Mar  5 18:39:49 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3273
3274         * Implemented the SKE's responder side to the Client library.
3275
3276         * When FAILURE is received to the protocol do not trust it
3277           blindly.  Register a timeout to wait whether the remote closes
3278           the connection as it should do it, only after that process the
3279           actual failure.  This was changed to both client and server.
3280
3281         * Added client_internal.h to include some of the structures
3282           there instead of client.h in lib/silcclient/.
3283
3284         * Added function silc_task_unregister_by_callback to unregister
3285           timeouts by the callback function.
3286
3287 Sat Mar  3 19:15:43 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3288
3289         * Some "Incomplete WHOIS info" errors has been appearing on the
3290           log files.  Took away the entry->userinfo check from WHOIS
3291           reply sending.  The entry->userinfo is now " " if client did not
3292           provide one.  I thought this was fixed earlier but something
3293           is wrong still.  Let's see if the error still appears.
3294
3295 Wed Feb 28 20:56:29 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3296
3297         * Fixed a minor bug in the login when the channel key is
3298           re-generated in the server.  It used to generate the key in
3299           wrong order and thus caused problems in the channel traffic.
3300
3301         * Fixed a minor bug in channel key distsribution after
3302           KICK command.  The key was not sent to the router even though
3303           it should've been.
3304
3305 Tue Feb 27 20:24:25 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3306
3307         * Added silc_ske_process_key_material_data as generic routine
3308           to process any key material as the SILC protocol dictates.  The
3309           function is used by the actual SKE library but can be used by
3310           applications as well.  This relates to the private message keys
3311           and the channel private keys since they must be processed the
3312           same way the normal SILC session keys.  The protocol dictates
3313           this.  Affected files: lib/silcske/silcske.[ch].
3314
3315           Added also silc_ske_free_key_material to free the
3316           SilcSKEKeyMaterial structure.
3317
3318         * Defined silc_cipher_set_key function to set the key for
3319           cipher without using the object's method function.  The affected
3320           files: lib/silccrypt/silccipher.[ch].
3321
3322         * Implemented silc silc_client_add_private_message_key,
3323           silc_client_add_private_message_key_ske, 
3324           silc_client_del_private_message_key,
3325           silc_client_list_private_message_keys and
3326           silc_client_free_private_message_keys functions in the
3327           client library.
3328
3329           Added functions silc_client_send_private_message_key to send
3330           the Private Message Key payload and silc_client_private_message_key
3331           to handle incoming Private Message Key payload.
3332
3333         * Added Cipher field to the Private Message Key payload to set
3334           the cipher to be used.  If ignored, the default cipher defined
3335           in the SILC protocol (aes-256-cbc) is used.
3336
3337 Tue Feb 27 13:30:52 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3338
3339         * Removed lib/silcclient/ops.h file.
3340
3341           Redefined parts of the SILC Client Library API. Created new
3342           file silcapi.h that deprecates the ops.h file and defines the
3343           published Client Library API.  Defined also private message key
3344           API and channel private key API into the file.
3345
3346           This is the file that the application must include from the
3347           SILC Client Library.  Other files need not be included by
3348           the application anymore.
3349
3350         * Added new key_agreement client operation callback and also
3351           defined the Key Agreement library API for the application.
3352
3353 Tue Feb 27 11:28:31 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3354
3355         * Added new packet type: SILC_PACKET_KEY_AGREEMENT.  This packet
3356           is used by clients to request key negotiation  between another
3357           client in the SILC network.  If the negotiation is started it
3358           is performed using the SKE protocol.  The result of the
3359           negotiation, the secret key material, can be used for example
3360           as private message key.
3361
3362           Implemented the Key Agreement payload into the files
3363           lib/silccore/silauth.[ch].
3364
3365 Mon Feb 26 12:13:58 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3366
3367         * Redefined ciphers for the SILC protocol.  Added some new ciphers
3368           and defined the key lengths for the algorithms.  Changed the
3369           code accordingly.  The default key length is now 256 bits.
3370
3371         * Fixed SKE key distribution function silc_ske_process_key_material
3372           when the key length is more than 128 bits.  The default key 
3373           length in SILC is now 256 bits.
3374
3375         * Added new command status type: SILC_STATUS_ERR_UNKOWN_ALGORITHM
3376           to indicate unsupported algorithm.
3377
3378         * Renamed rijndael.c to aes.c and all functions as well.
3379
3380         * Fixed a long standing channel key setting bug in client library.
3381           Weird that it has never surfaced before.
3382
3383         * Fixed bug in channel deletion.  If the entire channel is removed
3384           then it must also delete the references of the channel entry
3385           from the client's channel list as the client's channel entry and
3386           the channel's client entry share same memory.
3387
3388 Sun Feb 25 20:47:29 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3389
3390         * Implemented CONNECT and SHUTDOWN commands in the client.
3391
3392         * Implemented CLOSE command to the client.
3393
3394         * Added the function silc_idlist_find_server_by_name into the
3395           files silcd/idlist.[ch].
3396
3397           Added the function silc_idlist_find_server_by_conn into the
3398           files silcd/idlist.[ch].
3399
3400 Sat Feb 24 23:45:49 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3401
3402         * DIE command was renamed to SHUTDOWN.  Updated the both code
3403           and protocol specs.
3404
3405         * Defined SILC_UMODE_NONE, SILC_UMODE_SERVER_OPERATOR and
3406           SILC_UMODE_ROUTER_OPERATOR modes into lib/silccore/silcmode.h.
3407
3408         * Implemented CONNECT, CLOSE and SHUTDOWN commands to the server
3409           side.
3410
3411         * Added function silc_server_create_connection function to create
3412           connection to remote router.  My server implementation actually
3413           does not allow router to connect to normal server (it expects
3414           that normal server always initiates the connection to the router)
3415           so the CONNECT command is only good for connecting to another
3416           router.
3417
3418 Sat Feb 24 16:03:45 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3419
3420         * Added SILC_NOTIFY_TYPE_KICKED to indicate that the client
3421           or some other client was kicked from the channel.
3422
3423           Implemented the handling of the notify type to both client
3424           and server.
3425
3426           Implemented silc_server_send_notify_kicked to send the KICKED
3427           notify.  It is used to send it to the server's primary router.
3428
3429         * Implemented the KICK command into server and client.
3430
3431         * Added `query' argument to the silc_idlist_get_client function
3432           to indicate whether to query the client from server or not if
3433           it was not found.
3434
3435         * Added new command status type SILC_STATUS_ERR_NO_CHANNEL_FOPRIV
3436           to indicate that the client is not channel founder.
3437
3438         * Updated TODO.
3439
3440 Sat Feb 24 00:00:55 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3441
3442         * Removed the rng context from SilcPacketContext structure and
3443           changed that the packet routine uses the Global RNG API.
3444
3445 Fri Feb 23 11:22:57 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3446
3447         * Added support for quit message that client can "leave" on the
3448           channel when it quits the SILC.  It is ditributed inside the
3449           SILC_NOTIFY_TYPE_SIGNOFF notify type.
3450
3451           Added silc_server_free_client_data that will take the
3452           signoff message as argument.
3453
3454         * Changed SKE routines to use the silc_pkcs_sign/verify routines.
3455
3456 Thu Feb 22 23:05:36 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3457
3458         * Updated parts of the protocol specification to keep it up
3459           to date.
3460
3461 Thu Feb 22 15:08:20 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3462
3463         * Added List flag (SILC_PACKET_FLAG_LIST) to indicate list of
3464           payloads in one packet.
3465
3466         * Deprecated following packet types: NEW_ID_LIST, NEW_CHANNEL_LIST,
3467           NEW_CHANNEL_USER_LIST, SET_MODE and SET_MODE_LIST.  List packets
3468           use now the new List flag.
3469
3470         * Also deprecated the following packet types: REPLACE_ID,
3471           NEW_CHANNEL_USER and REMOVE_CHANNEL_USER packet types.
3472          
3473         * Added list support for Notify packet in server.
3474
3475         * Added silc_server_send_notify_channel_change to send the
3476           CHANNEL_CHANGE notify type to replace channel ID's.  Deprecates
3477           the silc_server_send_replace_id.
3478
3479         * Added silc_server_send_notify_nick_change to send the
3480           NICK_CHANGE notify type.  Deprecates the function
3481           silc_server_send_replace_id.
3482
3483         * Added silc_server_send_notify_join to send the JOIN notify type.
3484           Deprecates the function silc_server_send_new_channel_user.
3485
3486         * Added silc_server_send_notify_leave to send LEAVE notify type.
3487           Deprecates the function silc_server_send_remove_channel_user.
3488
3489         * Added silc_server_send_notify_cmode and 
3490           silc_server_send_notify_cumode to send CMODE and CUMODE notify
3491           types.  Deprecates the silc_server_send_set_mode function.
3492
3493         * Added SERVER_SIGNOFF notify type to indicate that server has
3494           quit.  This means that all clients on the channel from that 
3495           server will drop.  This can be also used when netsplit happens.
3496
3497           Deprecated REMOVE_ID packet type since it is not needed anymore
3498           even from server.
3499
3500           Added silc_server_send_notify_server_signoff to send the
3501           SERVER_SIGNOFF notify type.  Deprecates the function
3502           silc_server_send_remove_id.
3503
3504           Added also silc_server_send_notify_signoff to send the
3505           SIGNOFF notify type.
3506
3507         * Employed the PKCS #1. It is the mandatory way to do RSA in the
3508           SILC protocol from this day on.  Changed the protocol 
3509           specification as well.
3510
3511         * Added silc_server_send_notify_topic_set to send TOPIC_SET
3512           notify type.  It is used between routers to notify about
3513           topic changes on a channel.
3514
3515         * Added silc_id_dup into lib/silccore/id.[ch] to duplicate
3516           ID data.
3517
3518         * Partly updated the protocol specification to comply with the
3519           changes now made.  It is still though a bit outdated.
3520
3521         * The JOIN notify type now takes one extra argument <Channel ID>.
3522           The packet used to be destined to the channel but now the
3523           JOIN type may be sent as list thus it is impossible to 
3524           destine it to any specific channel.  By adding this argument
3525           it is again possible.
3526
3527 Wed Feb 21 22:39:30 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3528
3529         * Added CREDITS file.  The CHANGES and CREDITS file will appear
3530           in the distribution as well.
3531
3532 Wed Feb 21 14:17:04 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3533
3534         * Implemented CMODE_CHANGE, CUMODE_CHANGE and TOPIC_SET notify
3535           types in the server's silcd/packet_receive.c.
3536
3537         * Implemented CMODE and CUMODE to work in router environment.
3538
3539         * Fixed minor encoding and decoding buglet from the
3540           lib/silccore/silcmode.c.
3541
3542         * Fixed buffer overflow from lib/silcclient/command.c in USERS
3543           command parsing.
3544
3545 Wed Feb 21 12:44:00 EET 2001  Mika Boström <bostik@lut.fi>
3546
3547         * Changed all SilcConfigServer* and silc_config_server* to
3548           SilcServerConfig* and silc_server_config*, respectively.
3549           Patch by Bostik.
3550
3551 Wed Feb 21 00:10:00 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3552
3553         * Associated the ID (client or server ID) to the Authentication
3554           Payload to avoid any possibility of forging.  Updated the
3555           protocol specification and the code accordingly.
3556
3557 Tue Feb 20 14:14:14 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3558
3559         * The RSA key length is now save to the RsaKey context in the
3560           key generation process in lib/silccrypt/rsa.c.  The key length
3561           is now used to figure out the maximum size of the block allowed
3562           to be encrypted/signed.
3563
3564         * Added silc_mp_mp2bin_noalloc into lib/silcmath/mpbin.[ch].  It
3565           is equivalent to the silc_mp_mp2bin but does not allocate any
3566           memory.
3567
3568         * Changed silc_mp_mp2bin API to take length argument.  If it is
3569           non-zero then the buffer is allocated that large.  If zero, then
3570           the size is approximated using silc_mp_sizeinbase, which however
3571           is not relieable.
3572
3573         * Created Global RNG API which is global RNG that application can
3574           initialize.  After initializing, any routine anywhere in the
3575           code (including library) can use RNG without allocating a new
3576           RNG object.  This was done to allow this sort of use of the 
3577           RNG in code that has no chance to allocate RNG object.  All
3578           applications currently allocate this and many routines in the
3579           library use this.  Affected file lib/silccrypt/silcrng.[ch].
3580
3581         * Removed the RNG kludge from lib/silcmath/primegen.c and changed
3582           it to use the Global RNG API.
3583
3584         * Defined Authentication Payload into protocol specification that
3585           is used during SILC session to authenticate entities.  It is
3586           used for example by client to authenticate itself to the server
3587           to obtain server operator privileges.
3588
3589           Implemented this payload into the lib/silccore/silcauth.[ch].
3590           Implemented also routines for public key based authentication
3591           as the new protocol specification dictates.
3592
3593           Moved definitions of different authentication methods from
3594           lib/silccore/silcprotocol.h into lib/silccore/silcauth.h.
3595
3596         * Added silc_pkcs_encrypt, silc_pkcs_decrypt, silc_pkcs_sign,
3597           silc_pkcs_verify and silc_pkcs_sign_with_hash and
3598           silc_pkcs_verify_with_hash functions into the file 
3599           lib/silccrypt/silcpkcs.[ch].
3600
3601 Mon Feb 19 19:59:28 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3602
3603         * The client entry's userinfo pointer must be always valid. 
3604           Otherwise the [<unknown>] bug will surface beacuse the WHOIS
3605           will fail since it requires the userinfo.  Now, the userinfo
3606           is allocated as "" if actual userinfo does not exist.  Actually,
3607           it must exist and it is totally Ok to drop client connections
3608           that does not announce the userinfo.  However, we will make
3609           this workaround for now.
3610
3611         * Added silc_net_get_remote_port into lib/silcutil/silcnet.[ch]
3612           to return the remote port by socket.
3613
3614 Mon Feb 19 14:26:49 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3615
3616         * Changed SILC_SERVER_COMMAND_EXEC_PENDING macro to the name
3617           SILC_SERVER_PENDING_EXEC and added an new macro
3618           SILC_SERVER_PENDING_DESTRUCTOR which is called to free the
3619           data or when error occurs while processing the pending command.
3620
3621           Added new argument `destructor' into silc_server_command_pending
3622           and to the SilcServerCommandPending object.  This destructor is
3623           now called after calling the pending callback or if error occurs
3624           immediately.  If error occurs the actual pending callback won't
3625           be called at all - only the destructor.  The destructor may be
3626           NULL if destructor is not needed.
3627
3628           All this applies for client library code as well.  Similar
3629           changes were made there as well for the pending commands.
3630
3631           In the client, the application must now allocate the 
3632           SilcClientCommandContext with the silc_client_command_alloc
3633           function.
3634
3635         * Added reference counter to the SilcServerCommandContext.  Added
3636           function silc_server_command_alloc and silc_server_command_dup 
3637           functions.
3638
3639           Same type of functions added to the client library for the same
3640           purpose as well.
3641
3642         * Removed the cmd_ident from IDListData away since it is now 
3643           global for all connections.  It is the command identifier used
3644           in command sending and with pending commands.  The affected file
3645           is silcd/idlist.h.
3646
3647         * Added reference counter to the SilcSocketConnection objecet to
3648           indicate the usage count of the object.  The object won't be
3649           freed untill the reference counter hits zero.  Currently only
3650           server uses this, and client ignores it.  The client must be
3651           set to use this too later.  The affected files are
3652           lib/silccore/silcsockconn.[ch].  Added also the function
3653           silc_socket_dup to increase the reference counter.
3654
3655           This was mainly added because it is possible that the socket
3656           is removed underneath of pending command or other async
3657           operation.  Now it won't be free'd and proper DISCONNECTING
3658           flags, etc. can be set to avoid sending data to connection that
3659           is not valid anymore.
3660
3661         * Added SILC_SET_DISCONNECTING to server.c when EOF is read from
3662           the connection.  After that it sets SILC_SET_DISCONNECTED.
3663           It is, however, possible that the socket data is not still freed.
3664           The silc_server_packet_process now checks that data is not
3665           read or written to connection that is DISCONNECTED.  The socket
3666           get's freed when the reference counter hits zero.
3667
3668 Mon Feb 19 00:50:57 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3669
3670         * Changed the client operation API: channel_message operation's
3671           `sender' is now the client entry of the sender, not the nickname
3672           and the `channel' is the channel entry, not the channel name.
3673
3674           In the private_message operation the `sender' is now also the
3675           client entry of the sender not the nickname.
3676
3677           Affected file is lib/silcclient/ops.h and all applications
3678           using the client operations.
3679
3680 Sat Feb 17 22:11:50 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3681
3682         * Moved the calling of ops->connect() from connect_to_server_final
3683           into receive_new_id functin since that is the point when the
3684           client is actually allowed to send traffic to network.  The
3685           affected file is lib/silcclient/client.c.
3686
3687 Sat Feb 17 13:15:35 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3688
3689         * When receiving NEW_CHANNEL_LIST, NEW_CHANNEL_USER_LIST,
3690           NEW_ID_LIST and SET_MODE_LIST packets, broadcast the list packet
3691           (if needs broadcasting) instead of broadcasting the packets one
3692           by one which would make a burst in the network traffic.
3693
3694         * Added `broadcast' argument to the functions in silcd/server.[ch]
3695           silc_server_create_new_channel[_with_id] to indicate whether
3696           to send New Channel packet to primary router.
3697
3698 Sat Feb 17 01:06:44 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3699
3700         * Added new function into the silcd/server.[ch] files:
3701           silc_server_create_new_channel_with_id to create new channel with
3702           already existing Channel ID.
3703
3704         * Added new packet type SILC_PACKET_SET_MODE_LIST into the file
3705           lib/silccore/silcpacket.h.  This packet is used t send list of
3706           Set Mode payloads inside one packet.  Server uses this to set
3707           the modes for the channels and clients on those channels, that it
3708           announced to the router when it connected to it.  The protocol
3709           specification has been updated accordingly.
3710
3711         * The silc_server_new_channel did not handle the packet coming
3712           from normal server as it normally does not send that.  However,
3713           when it announces its channels it does send it.  Implemented
3714           the support for that.
3715
3716         * Added SILC_ID_CHANNEL_COMPARE macro to compare to Channel ID's
3717           into the file lib/silccore/id.h.
3718
3719 Fri Feb 16 23:57:29 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3720
3721         * Fixed memory leaks in the functions silc_idlist_del_client,
3722           silc_idlist_del_channel and silc_idlist_del_server in the file
3723           silcd/idlist.c.  All of those leaked like a sieve.
3724
3725         * Fixed some small memory leaks in the client's function
3726           silc_client_notify_by_server.
3727
3728         * Added functions into silcd/server.c: silc_server_announce_clients,
3729           silc_server_announce_channels and silc_server_announce_server.
3730           These functions are used by normal and router server to announce
3731           to its primary router about clients, channels and servers (when
3732           router) that we own.  This is done after we've connected to the
3733           router.
3734
3735           These functions effectively implements the following packet types:
3736           SILC_PACKET_NEW_CHANNEL_LIST, SILC_PACKET_NEW_CHANNEL_USER_LIST
3737           and SILC_PACKET_NEW_ID_LIST.
3738
3739         * Added new functions into the silcd/packet_receive.[ch]:
3740           silc_server_new_id_list, silc_server_new_channel_list and
3741           silc_server_new_channel_user_list to handle the incoming 
3742           NEW_ID_LIST, NEW_CHANNEL_LIST and NEW_CHANNEL_USER_LIST packets.
3743
3744         * Added support of changing Channel ID in the function
3745           silc_server_replace_id.  If the server that announces a channel
3746           to the router already exists in the router (with same name but
3747           with different Channel ID), router is responsible to send
3748           Replace ID packet to the server and force the server to change
3749           the Channel ID to the one router has.
3750
3751         * Added new notify type SILC_NOTIFY_TYPE_CHANNEL_CHANGE to notify
3752           client that the Channel ID has been changed by the router.  The
3753           normal server sends this to the client.  Client must start using
3754           the new Channel ID as the channel's ID.
3755
3756           Implemented handling of this new type into lib/silcclient/client.c
3757           into the function silc_client_notify_by_server.
3758
3759         * Added new function silc_idlist_replace_channel_id into the files
3760           silcd/idlist.[ch] to replace the Channel ID.
3761
3762 Fri Feb 16 14:14:00 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3763
3764         * Call silc_server_command_identify_check always when processing
3765           the IDENTIFY command in silcd/command.c
3766
3767 Thu Feb 15 20:07:37 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3768
3769         * Added new packet type SILC_PACKET_HEARTBEAT that is used to
3770           send keepalive packets.  The packet can be sent by clients, 
3771           servers and routers.
3772
3773           Added function silc_socket_set_heartbeat into the file
3774           lib/silccore/silcsockconn.[ch] to set the heartbeat timeout.
3775           If not set, the heartbeat is not performed.  The actual 
3776           heartbeat is implemented in the low level socket connection
3777           library.  However, application is responsible of actually
3778           sending the packet.
3779
3780           Added silc_server_send_heartbeat to send the actual heartbeat
3781           packet into silcd/packet_send.[ch].  Server now performs
3782           keepalive with all connections.
3783
3784         * Added silc_task_get_first function into lib/silcutil/silctask.c
3785           to return the timeout task with shortest timeout.  There was a bug
3786           in task unregistration that caused problems.  TODO has been
3787           updated to include that task system must be rewritten.
3788
3789         * The client library will now resolve the client information when
3790           receiving JOIN notify from server for client that we know but
3791           have incomplete information.
3792
3793         * Rewrote parts of silc_server_remove_from_channels and
3794           silc_server_remove_from_one_channel as they did not remove the
3795           channel in some circumstances even though they should've.
3796
3797         * Encryption problem encountered in server:
3798
3799           The LEAVE command used to send the Channel Key packet to the
3800           router immediately after generating it.  However, the code
3801           had earlier sent Remove Channel user packet but not immediately,
3802           ie. it was put to queue.  The order of packets in the router
3803           was that Channel Key packet was first and Remove Channel User
3804           packet was second, even though they were encrypted in the
3805           reverse order.  For this reason, MAC check failed.  Now, this
3806           is fixed by not sending the Channel Key packet immediately but
3807           putting it to queue.  However, this is more fundamental problem:
3808           packets that are in queue should actually not be encrypted 
3809           because packets that are sent immediately gets encrypted
3810           actually with wrong IV (and thus MAC check fails).  So, packets
3811           that are in queue should be encrypted when they are sent to
3812           the wire and not when they put to the queue.
3813
3814           However, the problem is that the current system has not been
3815           designed to work that way.  Instead, the packet is encrypted
3816           as soon as possible and left to the queue.  The queue is then
3817           just purged into wire.  There won't be any fixes for this
3818           any time soon.  So, the current semantic for packet sending
3819           is as follows:
3820
3821           o If you send packet to remote host and do not force the send
3822           (the packet will be in queue) then all subsequent packets to the
3823           same remote host must also be put to the queue.  Only after the
3824           queue has been purged is it safe again to force the packet
3825           send immediately.
3826
3827           o If you send all packets immediately then it safe to send
3828           any of subsequent packets through the queue, however, after
3829           the first packet is put to queue then any subsequent packets
3830           must also be put to the queue.
3831
3832           Follow these rules and everything works fine.
3833
3834 Thu Feb 15 14:24:32 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3835
3836         * Added new function silc_server_remove_clients_by_server to
3837           remove all client entries from ID list when the server connection
3838           is lost.  In this case it is also important to invalidate all
3839           client entires as they hold the invalid server entry.  This
3840           fixes fatal bug when server has lost connection and will reconnect
3841           again.
3842
3843 Wed Feb 14 16:03:25 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3844
3845         * Made some sanity checks to silc_server_daemonise like to check
3846           whether the requested user and group actually exists.
3847
3848         * Added sanity check to SKE's silc_ske_responder_finish to check
3849           that the public and private key actually is valid. 
3850
3851         * Invalidate the client's nickname when receiving Replace ID
3852           packet and the Client ID is being replaced.  This means that the
3853           server will query the nickname if someone needs it (client)
3854           a bit later.
3855
3856         * Sort the ID Cache in client library when the ID Cache data
3857           has changed (needs sorting).
3858
3859         * Do not allow for SILC client to create several connections to
3860           several servers.  The client does not support windows right now
3861           and generating multiple connections causes weird behaviour.
3862
3863           Irssi-silc client does support windows and can handle several
3864           connections without problems, see: www.irssi.org and SILC plugin.
3865
3866         * Fixed some places where client was added to the IDList.  The
3867           rule of thumb is following (in order to get everything right):
3868           If the client is directly connected local client then the 
3869           `connection' argument must be set and `router' argument must be 
3870           NULL to silc_idlist_add_client function.  If the client is not
3871           directly connected client then the `router' argument must
3872           bet set and the `connection' argument must be NULL to the
3873           silc_idlist_add_client function.
3874
3875         * The funtion silc_server_packet_send_local_channel actually did
3876           not check whether the client was locally connected or not.  It
3877           does that now.  Fixed a bug related to LEAVE command.
3878
3879         * Fixed Remove Channel User payload parsing bug in server's
3880           silcd/packet_receive.c.  Fixed a bug related to LEAVE command.
3881
3882         * The server's silc_server_save_channel_key now checks also the
3883           global ID list for the channel as it might not be in the local
3884           list.  Fixed a bug related to LEAVE command.
3885
3886         * Is this the end of the [<unknown>] buglet that has been lurking
3887           around for a long time?  A little for loop fix in server's
3888           silc_server_command_whois_parse that is used by both IDENTIFY
3889           and WHOIS command.  At least, this was a clear bug and a cause
3890           of one type of [<unknown>] buglet.
3891
3892         * WHOIS and IDENTIFY commands call the function
3893           silc_server_command_[whois/identify]_check function even if
3894           we are not router server.
3895
3896 Tue Feb 13 19:55:59 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3897
3898         * Added --with-gmp configuration option.  If set the GMP
3899           is always compiled in the SILC source tree.  If not set then
3900           it is checked whether the system has the GMP3 installed.  If
3901           it has then the GMP won't be compiled (the system's headers
3902           and library is used), if it doesn't have it then the GMP is
3903           compiled in the SILC source tree.
3904
3905 Mon Feb 12 11:20:32 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3906
3907         * Changed RSA private exponent generation to what PKCS #1
3908           suggests.  We try to find the smallest possible d by doing
3909           modinv(e, lcm(phi)) instead of modinv(e, phi).  Note: this is
3910           not security fix but optimization.
3911
3912 Sun Feb 11 18:19:51 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3913
3914         * Added new config entry [Identity] to fork the server and run
3915           it as specific user and group.  A patch from Bostik.
3916
3917         * Imported Dotconf configuration library into lib/dotconf.
3918           This will be used to create the SILC configuration files later.
3919           It will appear in the distsribution after this commit.
3920
3921 Sat Feb 10 21:13:45 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3922
3923         * A big code auditing weekend happening.  Auditing code for 
3924           obvious mistakes, bugs and errors.  Also, removing any code
3925           that is obsolete.
3926
3927           Removed files for being obsolete:
3928
3929           o lib/silcutil/silcbuffer.c (the buffer interface is entirely in
3930           inline in the file lib/silcutil/silcbuffer.h)
3931
3932           o lib/silcutil/silcbufutil.c (the header has inline versions)
3933
3934           Changed code to fix possible error conditions:
3935
3936           o The buffer formatting routines now check that the destination
3937           buffer really has enough space to add the data.  This applies for
3938           both buffer formatting and unformatting 
3939           (lib/silcutil/silcbuffmt.[ch]).  Also, the entire buffer
3940           unformatting was changed to accomodate following rules: 
3941           XXX_*STRING_ALLOC will allocate space for the data into the pointer
3942           sent to the function while XXX_*STRING will not allocate or copy 
3943           the data into the buffer.  Instead it sets the pointer from the
3944           buffer into the pointer sent as argument (XXX_*STRING used to
3945           require that the pointer must be allocated already).  This change
3946           makes this whole thing a bit more consistent and more optimized
3947           (note that the data returned in the unformatting with XXX_*STRING
3948           must not be freed now).  The routines return now -1 on error.
3949
3950           o Tried to find all code that use buffer_format and buffer_unformat
3951           and added return value checking to prevent formatting and
3952           especially unformatting errors and possible subsequent fatal
3953           errors.
3954
3955           o Changed ske->x and ske->KEY to mallocated pointers in
3956           lib/silcske/silcske.h.  Fixed possible data and memory leak.
3957
3958           o Added return value checking to all *_parse* functions.  Fixed
3959           many memory leaks as well.
3960
3961           o Added length argument to silc_id_str2id in lib/silccore/id.[ch]
3962           so that buffer overflows would not happen.  All code now also
3963           checks the return value as it can fail.
3964
3965 Mon Feb  5 20:08:30 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3966
3967         * Added reconnection support to server if the normal server looses
3968           its connection to the router (for example if router is rebooted).
3969           The server performs normal reconnection strategy implemented
3970           to the server.  Affected file silcd/server.c.
3971
3972 Sun Feb  4 13:18:32 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3973
3974         * Added new packet type SILC_PACKET_SET_MODE that is used to
3975           distribute the information about changed modes (for clients,
3976           channels and clients channel modes) to all routers in the
3977           network.  Updated the protocol specification accordingly.
3978
3979           Added functions into silcd/packet_send.c and 
3980           silcd/packet_receive.c: silc_server_send_set_mode, 
3981           silc_server_set_mode.
3982
3983           Added new files silcmode.[ch] into lib/silccore that implements
3984           the encoding and decoding of Set Mode Payload.  Added new type
3985           SilcSetModePayload.  Moved the definitions of different modes
3986           from lib/silccore/silcchannel.h into lib/silccore/silcmode.h.
3987
3988 Sat Feb  3 15:44:54 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
3989
3990         * Oops, a little mistake in server's connection authentication 
3991           protocol.  The protocol is not ended with FAILURE but with
3992           SUCCESS if the authentication is Ok. :)  Affected file is
3993           silcd/protocol.c.
3994
3995         * Implemented NICK_CHANGE notify handling in server in the file
3996           silcd/packet_receive.c  The NICK_CHANGE notify is distributed to
3997           the local clients on the channel.  After the changing nickname
3998           in router environment snhould work and the [<unknown>] nickname
3999           should appear no more.
4000  
4001           The silc_server_replace_id function that receives the Replace ID
4002           payload now sends the NICK_CHANGE notify type also in the file
4003           silcd/packet_receive.c
4004
4005         * Changed WHOIS and IDENTIFY command to support the maximum amount
4006           of arguments defined in protocol specs (3328 arguments).  This 
4007           fixed a bug that caused problems when there were more than three
4008           users on a channel.
4009
4010 Fri Feb  2 11:42:56 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4011
4012         * Added extra parameter, command identifier, to the
4013           silc_client_send_command so that explicit command identifier
4014           can be defined.
4015
4016           Changed that ID list routines uses specific command identifier
4017           when sending WHOIS/IDENTIFY requests to the server so that they
4018           can be identified when the reply comes back.
4019
4020           Affected files lib/silcclient/command.[ch],
4021           lib/silcclient/client.c and lib/silcclient/idlist.[ch].
4022
4023         * Added `sender' argument to silc_server_packet_send_to_channel
4024           to indicaet the sender who originally sent the packet to us
4025           that we are now re-sending.  Ignored if NULL.  Affected file
4026           silcd/packet_send.[ch].
4027
4028         * Added some server statistics support in silcd/server_internal.h
4029           SilcServerStatistics structure and around the server code.  Also
4030           send some nice statistics information when client is connecting
4031           to the client.
4032
4033 Thu Feb  1 23:31:21 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4034
4035         * Fixed channel ID decoding in server's JOIN command reply in
4036           silcd/command_reply.c
4037
4038         * Fixed braodcasting of replace ID payload to not to send it if
4039           we are standalone server in silcd/packet_receive.c.
4040
4041         * Fixed all channel message sending routines to not to send
4042           packets to clients that has router set, since they are routed
4043           separately in the same function earlier.  Affects file
4044           silcd/packet_send.c and all channel packet sending functions.
4045
4046         * In USERS reply, res_argv[i] are not allocated, the table
4047           is allocated.  Thus changed that free the table, not its
4048           internals.
4049
4050         * In server's whois_check and identify_check if the client is
4051           locally connected do not send any WHOIS commands - they are not
4052           needed.
4053
4054 Thu Feb  1 21:32:27 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4055
4056         * Fixed some minor bugs in client when sending WHOIS command.  The
4057           arguments was in wrong order.
4058
4059         * Removed statis function add_to_channel from server in 
4060           silcd/command.c that was previously used with the joining but
4061           is obsolete now.
4062
4063         * Tested USERS command in router environment successfully with two
4064           routers, two servers and two clients.
4065
4066 Thu Feb  1 00:54:26 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4067
4068         * Reorganized the USERS command and command reply in client library
4069           in lib/silcclient/command.c and lib/silcclient/command_reply.c.
4070           When the command is given by user we register a pending command
4071           callback that will reprocess the command after the reply has been
4072           received from the server.  When reprocessing the packet we then
4073           display the information.  Thus, the USERS information is displayed
4074           now in the command callback instead of in the command reply
4075           callback.  The processing of the command is same as previously
4076           when server has sent the command reply in the JOINing process.
4077
4078         * Added to USERS command in silcd/command_reply.c to join the client,
4079           we didn't use to know about, to the channel after we've created
4080           a client entry for it.  Also, for clienet we did know already still
4081           check whether it is on the channel or not and add it if not.
4082
4083         * Removed silc_server_command_join_notify as the function and its
4084           use was obsolete.
4085
4086 Tue Jan 30 22:39:15 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4087
4088         * Changed the client's pending command handling to the same as the
4089           server's pending command handling.  It is also now possible to
4090           execute command reply functions from other command reply
4091           function as the function callbacks for commands and command
4092           replies are one and same.  The pending commands are not static
4093           list anymore, it is mallocated SilcDList in lib/silcclient/client.h
4094           in client connection context.  Thus, pending commands are server
4095           connection specific as it is convenient.
4096
4097           Changed the function silc_client_command_pending and
4098           silc_client_command_pending_del and added new function
4099           silc_client_command_pending_check.  Removed the 
4100           SILC_CLIENT_CMD_REPLY_EXEC, and SILC_CLIENT_PENDING_COMMAND_CHECK
4101           macros.
4102
4103         * Added cmd_ident, current command identifier, to the client
4104           connection context in lib/silcclient/client.h to keep track on
4105           command identifiers used in command sending.  Client's command reply
4106           function handling now supports the mandatory command identifiers.
4107
4108         * Added SILC_CLIENT_COMMAND_EXEC_PENDING macros to all command reply
4109           funtions in client to fully support pending command callbacks.
4110
4111         * NOTE: the name_list in USERS (old NAMES) command is NOT sent anymore
4112           as one of the arguments to the application in the command reply
4113           client operation.
4114
4115         * NOTE: The FORWARDED flag is depracated.  It used to be depracated
4116           before first releasing SILC but came back.  Now it is removed again
4117           and should come back nomore.  The FORWARDED flag was used only
4118           by the JOINing procedure by forwarding the command packet to router.
4119           Now, the JOINing procedure has been changed to more generic (due
4120           to various router environment issues) and FORWARDED is not needed
4121           anymore for anything.  The protocol specification is yet to be
4122           updated.
4123
4124           Now, removed silc_server_packet_forward from server and the flag
4125           SILC_PACKET_FORWARDED from lib/silccore/silcpacket.h.
4126
4127 Tue Jan 30 00:05:05 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4128
4129         * Renamed NAMES command to USERS command.  The NAMES was named that
4130           due to historical reasons.  Now it is renamed.  Also, rewrote
4131           parts of the USERS command.  The nickname list is not sent anymore
4132           by the server.  Only Client ID and mode lists are sent in the USERS
4133           command.  Changed this also to the protocol specification.
4134
4135           The client now resolves the names and stuff after it receives
4136           the USERS list from the server when joining to the channel.
4137
4138         * WHOIS and IDENTIFY commands has been changed to support multiple
4139           Client ID's per command.  One can now search for multiple users
4140           in the network by sending only one WHOIS or IDENTIFY command.
4141           Changed the code and the protocol specifications.
4142
4143         * Removed silc_server_command_identify_parse and changed that IDENTIFY
4144           uses silc_server_command_whois_parse to parse the request. */
4145
4146         * If normal server, do not parse the WHOIS and IDENTIFY requests
4147           before sending it to the router.  Saves some time.
4148
4149 Sun Jan 28 16:19:49 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4150
4151         * Fixed JOIN command on client library.  Wrong number of arguments
4152           used to crash the client.
4153
4154         * Added silc_server_channel_has_global function to check whether
4155           channel has global users or not.
4156
4157         * Added silc_server_channel_has_local function to check whether channel
4158           has locally connected clients on the channel.
4159
4160         * The silc_server_remove_from_one_channel now checks whether the
4161           channel has global users or not after given client was removed from
4162           the channel.  It also checks whether the channel has local clients
4163           on the channel anymore.  If it does not have then the channel entry
4164           is removed as it is not needed anymore.
4165
4166         * The silc_server_notify now checks on JOIN notify whether the joining
4167           client is one of locally connected or global.  If it is global then
4168           the channel has now global users on the channel and that is marked
4169           to the channel entry.  Also, it now saves the global client to
4170           global list who is joining and JOINs it to the channel.  This is
4171           for normal server, that is.
4172
4173           Changed silc_server_send_notify_on_channel, 
4174           silc_server_packet_relay_to_channel and 
4175           silc_server_packet_send_to_channel check if we are normal server
4176           and client has router set (ie. global client) do not send the
4177           message to that client, as it is already routed to our router.
4178
4179         * Implemented LEAVE notify type handling in silc_server_notify 
4180           function.
4181
4182         * Tested LEAVE command in router environment successfully.  Tested
4183           with two routers, two servers and two clients.
4184
4185         * Updated TODO.
4186
4187         * idlist_find_xxx_by_id routines now dumps the ID on the debug mode.
4188
4189         * Implemented SIGNOFF notify type handling in silc_server_notify
4190           function.
4191
4192         * silc_server_remove_id now removes the client entry from all channels
4193           it has joined and thusly sends SIGNOFF notify type.
4194
4195         * Rewrote the NAMES list generation in server by removing two excess
4196           loops.  The lists are created now inside one loop.
4197
4198 Sat Jan 27 22:34:56 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4199
4200         * silc_server_remove_channel_user checks now also global list
4201           for channel and client.
4202
4203         * silc_server_new_channel_user checks now both local and global
4204           list for channel and client.  Fixed a bug in client id decoding.
4205           Used to decode wrong buffer.
4206
4207         * silc_server_channel_message checks now both local and global
4208           list for channel entry.
4209
4210         * Tested channel joining (hence JOIN) in router environment
4211           successfully.  Tested with two routers, two servers and two
4212           clients.
4213
4214         * Tested channel message sending in router environment successfully.
4215
4216 Thu Jan 11 03:22:57 EET 2001  Pekka Riikonen <priikone@poseidon.pspt.fi>
4217
4218         * Added silc_server_save_channel_key into server.[ch] to save the
4219           received channel key in Channel Key payload processing. It is
4220           also used in JOIN command reply handling.
4221
4222           Equivalent function silc_client_save_channel_key added into
4223           client.[ch] into client library.
4224
4225         * Changed JOIN command reply to send information whether the channel
4226           was created or not (is existing already) and the channel key 
4227           payload.  Changed protocol specs accordingly.
4228
4229         * Fixed bugs in WHOIS and IDENTIFY command reply sending when
4230           the request was sent by ID and not by nickname.  Crashed on
4231           NULL dereference.
4232
4233 Sat Dec 23 21:55:07 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4234
4235         * Fixed a bug in Client library.  IDENTIFY and WHOIS reply functions
4236           now correctly save the received data.
4237
4238         * silc_server_free_sock_user_data now notifies routers in the 
4239           network about entities leaving the network.
4240
4241           At the same time implemented functions silc_server_remove_id
4242           and silc_server_send_remove_id to receive and send REMOVE_ID
4243           packets.  The packet is used to notify routers in the network
4244           about leaving entities.  The ID removed will become invalid in
4245           the network.
4246
4247         * Added function silc_idlist_del_server into server. Removes and
4248           free's server entry from ID list.
4249
4250         * silc_server_private_message function now checks, if we are router,
4251           that the destination ID really is valid ID, naturally.
4252
4253         * In router when NEW_ID packet is received (for new client) the
4254           hash of the Client ID is saved in the ID Cache but the
4255           client->nickname is set to NULL, instead of putting the hash
4256           to it as well.
4257
4258           IDENTIFY command now also checks that client->nickname must be
4259           valid. If it is not if will request the data from the server who
4260           owns the client.  Added new function 
4261           silc_server_command_identify_check.
4262
4263         * Added silc_command_set_command into lib/silccore/silcommand.[ch]
4264           to set the command to already allocated Command Payload.
4265
4266         * Tested private message sending in router environment with two
4267           routers, two servers and two clients.  Fixed minor bugs and now
4268           it works fine.
4269
4270         * Fixed segfault from client's NAMES command. Used to crash if
4271           not on any channel.
4272
4273         * Forwarded packets must not be routed even if it is not destined
4274           to the receiver.  Changed server code comply with this.
4275
4276 Sun Dec 17 14:40:08 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4277
4278         * Added `require_reverse_mapping' boolean value to ServerParams
4279           structure. If TRUE (not default) the server will require that
4280           the connecting host has fully qualified domain name.
4281
4282           If the reverse mapping is not required and hostname could not be
4283           found the IP address is used as hostname.
4284
4285 Sat Dec 16 17:39:54 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4286
4287         * Implemented version string checking to both client and server.
4288           The check is incomplete currently due to the abnormal version 
4289           strings used in development version of SILC.
4290
4291         * Changed all command functions in server to use the new
4292           CHECK_ARGS macro.
4293
4294 Fri Dec 15 15:55:12 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4295
4296         * Changed char *data to unsigned char *data in ID Cache system to
4297           support binary data as ID Cache data. Changed code to support
4298           binary data in lib/silccore/idcache.c.
4299
4300         * Renamed silc_server_packet_relay_command_reply to 
4301           silc_server_command_reply as it is normal packet receiving
4302           function. Rewrote the function to accept command replys for
4303           servers and not only for clients.
4304
4305         * Mark remote router always as registered server if we are connecting
4306           to it.  Otherwise, commands sent by the router to us are ignored.
4307
4308         * All ID List find routines now returns the ID Cache Entry pointer
4309           as well if requested.
4310
4311         * WHOIS command works now in router environment, tested with two
4312           routers, two servers and two clients.
4313
4314         * Cleaned up and rewrote IDENTIFY command. IDENTIFY should work now
4315           in router environment (as it is almost equivalent to WHOIS) but
4316           hasn't been tested thoroughly.  Added new functions:
4317
4318           silc_server_command_identify_parse
4319           silc_server_command_identify_send_reply
4320           silc_server_command_identify_from_client
4321           silc_server_command_identify_from_server
4322
4323         * Disabled route cache adding because adding two different ID's with
4324           same IP replaces the old cache entry thus giving wrong route.
4325           The entry->router->connection is always the fastest route anyway
4326           so route cache may not be needed.  Of course, new routes maybe
4327           established after receiving the ID when the entry->router->connection
4328           might not be anymore the most optimal.
4329
4330 Thu Dec 14 15:55:35 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4331
4332         * Add route cache for received ID for fast routing.
4333
4334         * Added silc_server_packet_route to route received packet on router
4335           that is not destined to us.
4336
4337         * Renamed silc_server_get_route to silc_server_route_get.
4338
4339         * Added id_string and id_string_len fields into SilcServer to
4340           include encoded ServerID for fast comparing without excess
4341           encoding of the ID's.
4342
4343         * Cleaned up WHOIS command on server side. Added following static
4344           functions:
4345
4346           silc_server_command_whois_parse
4347           silc_server_command_whois_check
4348           silc_server_command_whois_send_reply
4349           silc_server_command_whois_from_client
4350           silc_server_command_whois_from_server
4351
4352         * Added macro SILC_SERVER_COMMAND_CHECK_ARGC to check mandatory
4353           arguments in command replies. All command functions should be
4354           updated to use this macro.
4355
4356 Sun Dec 10 23:52:00 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4357
4358         * Minor typo fixes on command reply handling on server.
4359
4360 Tue Nov 28 11:05:39 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4361
4362         * Added silc_server_command_add_to_channel internal routine to add
4363           the client to the channel after router has created the channel and
4364           sent command reply to the server.
4365
4366         * Added generic silc_server_send_command to send any command from
4367           server.
4368
4369         * Use static buffer with ID rendering instead of duplicating data.
4370
4371 Mon Nov 27 21:39:40 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4372
4373         * Fixed a channel user mode bug when joining to a channel server gave
4374           everybody channel founder rights, oops.
4375
4376         * We mark ourselves as the router of the incoming server connection
4377           if we are router ourselves.  This way we can check in some packet
4378           sending functions whether it is locally connected server.  For
4379           incoming router connections we put NULL.
4380
4381         * For router sending packets locally means now always sending the
4382           packet cell wide; to local clients and local servers.  For normal
4383           server sending packet locally means sending it to only local
4384           clients.
4385
4386         * Fixed the JOIN command to really work in router environment.  If the
4387           channel is created it is always created by the router.  Router is
4388           also responsible of making the initial joining to the channel,
4389           sending JOIN notify to the sending server and distributing 
4390           NEW_CHANNEL and NEW_CHANNEL_USER packets.  Hence, if the channel
4391           does not exist server doesn't do anything else but forward the
4392           command to the router which performs everything.
4393
4394         * Added silc_server_send_channel_key function to send the Channel Key
4395           payload.
4396
4397         * Added silc_server_create_channel_key to create new channel key.  The
4398           channel key is now re-generated everytime someone joins or leaves
4399           a channel, as protocol dictates.  Note: channel->key_len is the
4400           key length in bits.
4401
4402 Wed Nov 22 22:14:19 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4403
4404         * Splitted server.[ch] finally.  Created now packet_send.[ch] and
4405           packet_receive.[ch] to separate packet sending and receiving
4406           routines.  The server.[ch] now includes everything else including
4407           actual packet processing (writing and reading data) and other
4408           server issues.
4409
4410           Renamed silc_server_private_message_send_internal to
4411           silc_server_send_private_message.  The routine is still though
4412           used only to relay private messages as server does not send
4413           private messages itself.
4414
4415           Renamed silc_server_new_channel to silc_server_create_new_channel
4416           and added new function sicl_server_new_channel that handles the
4417           incoming New Channel packet.  Added also new sending function
4418           silc_server_send_new_channel to send New Channel Payload.
4419
4420         * Added new function silc_server_notify to process incoming notify
4421           packet to the server/router. Server may then relay the notify
4422           to clients if needed.
4423
4424         * Added new function silc_server_new_channel_user to process incoming
4425           New Channel User packet.  Router will redistribute the packet and
4426           send JOIN notify to its local clients and locally connected servers
4427           if needed.  Normal server will send JOIN notify to its local client
4428           on same channel when received this packet.  Added also corresponding
4429           sending function silc_server_send_new_channel_user to sent the
4430           payload.
4431
4432         * Added boolean route argument to send_notif_to_channel and
4433           packet_send_to_channel functions to attempt to route the packet
4434           if it is TRUE and send only locally if it is FALSE.
4435
4436 Tue Nov 21 19:49:31 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4437
4438         * silc_server_replace_id now broadcasts the received replace ID
4439           packet if it is not broadcast packet already. The router must
4440           broadcast to inform other routers about changed ID.
4441
4442         * Added backpointer to server's router into SilcServer context in
4443           silcd/server_internal.h.
4444
4445         * Fixed silc_server_packet_broadcast to send correct broadcast
4446           packets.
4447
4448         * The channel key is now distributed to the local client as soon
4449           as it is received from the router (in router environment) so that
4450           no other packet may be sent for the channel until client has 
4451           received the key.
4452
4453         * silc_server_remove_channel_user now broadcasts the received
4454           Remove Channel User packet if it is not broadcast packet already.
4455           The router must broadcast to inform other routers about removed
4456           channel user.
4457
4458         * Added users field into SilcPacketContext that is a reference count
4459           of the context.  One can increase the reference count by calling
4460           silc_packet_context_dup which is now changed to just increase the
4461           reference count instead of duplicating the data.  The reference
4462           count is decresed by calling silc_packet_context_free that will
4463           free the data after the reference count hits zero.
4464
4465           For now on the packet context and everything allocated into it
4466           (including the raw packet from network) must be freed by calling
4467           the new silc_packet_context_free function.  Added also new function
4468           silc_packet_context_alloc that must be used now to allocate the
4469           context.  This also means that if a routine is asynchronous from
4470           silc_[client/server]_packet_parse_type the packet context must
4471           be duplicated by calling silc_packet_context_dup.  Otherwise it
4472           gets free'd after silc_[client/server]_packet_parse_type returns.
4473           Also, one must remember that if packet is duplicated then its 
4474           reference count must be decresed by calling the free function as
4475           many times as it was duplicated.
4476
4477         * Changed SilcBuffer field from protocol contexts to SilcPacketContext
4478           from both client and server.
4479
4480 Mon Nov 20 23:47:03 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4481
4482         * Made joining to a channel working in router environment.
4483
4484         * Cleaned up JOIN command on server side and create function
4485           silc_server_command_join_channel internal routine to make the
4486           joining happen.
4487
4488 Thu Nov  9 21:12:39 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4489
4490         * Changed silc_command_pending list to SilcDList.  Also, added
4491           `ident' field to SilcServerCommandPending structure to identify
4492           the reply and to call correct callback.
4493
4494           Added silc_server_command_pending_check function to replace the
4495           corresnponding macro.  The silc_command_pending list is not
4496           extern anymore.
4497
4498         * Added silc_command_set_ident into lib/silccore/silccommand.[ch]
4499           to set identifier to previously allocated Command Payload.  It
4500           is used to set identifier for command when resending Command
4501           Payload.
4502
4503         * Added silc_command_payload_encode_payload to encode Command
4504           Payload buffer from SilcCommandPayload structure.
4505
4506         * Added silc_argument_payload_encode_payload to encode Argument
4507           payload buffer from SilcArgumentPayload structure.
4508
4509 Wed Nov  8 21:03:28 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4510
4511         * Changed WHOIS command to support router connection on server side.
4512           The whois request is always sent to router unless the server is
4513           standalone server.  After server has received the reply from the
4514           router will it send the reply to the client.
4515
4516         * Added silc_server_packet_broadcast into silcd/server.[ch] to
4517           broadcast received broadcast packet.  The function is used only
4518           by router.  The broadcast packet is always sent to the router's
4519           primary route.
4520
4521         * Added silc_id_render function in lib/silcutil/silcutil.[ch] to
4522           render given ID to printable string, for log files for example.
4523
4524 Tue Nov  7 22:14:19 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4525
4526         * Made basic router to router connections working.  At least they
4527           can now connect to each other but nothing really works the way
4528           they are supposed - yet.
4529
4530         * Added new initiator token to RouterConnection configuration
4531           file in silcd/serverconfig.[ch].  It is used to tell whether we
4532           are the initiator to the remote router or whether we'll expect
4533           the other end to connect.
4534
4535         * Moved registering of listener task to silc_server_init, hence
4536           the server starts listenning as soon as it is run, even if it
4537           does not have connections to other routers.  Let's see how well
4538           this will work.
4539
4540         * Changed default connection retry timeouts for more suitable in
4541           silcd/server.h.
4542
4543         * Removed cipher and such arguments from silc_idlist_add_client
4544           and silc_idlist_add_server prototypes from silcd/idlist.[ch].
4545           Added new function silc_idlist_add_data to add the keys and stuff
4546           to any ID entry.
4547
4548         * Added SilcIDListData structure and added it to SilcClientEntry
4549           and SilcServerEntry as their first field in the structure.  This
4550           way we can explicitly cast the ID entries to the SilcIDListData
4551           structure and get common data for the entries.  In past, we had
4552           to first check what type of connection it is and then cast it to
4553           correct ID entry type.  Now, we can directly cast the opaque
4554           pointer to the SilcIDListData (no matter what ID entry it actually
4555           is) and get the data needed.
4556
4557 Mon Nov  6 21:56:12 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4558
4559         * Wow, found a bug in scheduler.  The scheduler uninitialized itself
4560           in some circumstances even if threre were timeout tasks, though not
4561           IO tasks, but tasks anyway.  Now fixed.
4562
4563         * Defined SilcServerConnection structure to hold connection specific
4564           stuff about directly connected servers and routers.  The definition
4565           is currently in silcd/server_internal.h.  I thought about having
4566           a bit more important role fro this struct but for now it is used
4567           only when connecting to other server (or router actually).
4568
4569         * Added connecting retry support in server when connecting to
4570           router(s).  The retry feature implement exponential backoff
4571           algorithm.  Also, added SilcServerParams structure to hold default
4572           parameters for server.  For now, it include these retry settings
4573           and are hard coded.  After server is moded to be as Silc Server
4574           Library this structure will be more important.
4575
4576 Sun Nov  5 22:28:44 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4577
4578         * Changed client librarys channel->clients table to SilcList and
4579           changed code accordingly.
4580
4581 Thu Nov  2 16:28:01 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4582
4583         * Changed client's channel table to SilcList and changed code 
4584           accordingly.  Also changed SilcChannelClientEntry to include back-
4585           pointer to the channel so that client entry can use that structure
4586           as list as well and we have fast cross-reference to the channel.
4587           This change dramatically decreased the complexity of channel
4588           handling with client entry and vice versa (removed one extra
4589           loop when searching for channel entry from many functions).
4590
4591         * Changed server->sim from table to SilcDList and changed code
4592           accordingly.
4593
4594         * NAMES command can now be used from user interface.  It will show
4595           the user list on the channel, neatly.
4596
4597         * Added realname pointer to SilcClientEntry in lib/silcclient/idlist.h.
4598           Code now saves realname of the user if it becomes available.
4599
4600         * Renamed configure.in to configure.in.pre and made ./prepare
4601           script to automatically add correct version string to
4602           configure.in which it creates from configure.in.pre.
4603
4604 Wed Nov  1 17:21:26 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4605
4606         * NAMES command reply now shows users mode with the nickname when
4607           joining to channel.
4608
4609         * Moved silc_client_ch[u]mode[_char] functions from 
4610           silc/clientutil.[ch] to lib/silcclient/client.[ch].  Though, that
4611           place sucks, they are utility functions and should be in some
4612           other file.
4613
4614         * Fixed some unsigned int's to unsigned short's.  Patch by cras.
4615
4616         * Fixed contrib/getopt*.[ch] to not require config.h.  Patch by
4617           cras.
4618
4619 Tue Oct 31 20:10:37 EET 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4620
4621         * Updated README.
4622
4623         * Added TRQ (efficient deque and list library) into lib/trq.  This is
4624           a very good list library that is currently used in the SILC.  Defined
4625           SilcList API over the library because I didn't like the API very
4626           much.  See lib/trq/silclist.h for the API and examples of how to
4627           use the API.  Fixed various places in the code to use the new
4628           SilcList API. The SilcList is meant for lists that has a structure
4629           already defined as a list.  It is not suitable to add just some
4630           context to the list (in TRQ, the context is the list actually).
4631
4632           So, I defined SilcDList that can be used for the purpose where 
4633           predefined list structure does not exit.  This can be used as
4634           such list.  Now some context just can be added to the SilcDList.
4635           Currently this list is not used in the SILC just yet, though there
4636           are a lot places where this can replace dynamically allocated
4637           tables and I will fix these places, later, to use SilcDList.
4638           See lib/trq/silcdlist.h for SilcDList (they are all inline functions,
4639           and use TRQ internally).
4640
4641           Also fixed some annoying warning messages that the original TRQ
4642           code generated.  Also minor changes to TRQ's Makefile.in.
4643
4644         * Added support for querying by Client ID to both WHOIS and 
4645           IDENTIFY commands into server, as required by the protocol.
4646
4647         * Removed method function pointers from SilcBuffer structure. They
4648           weren't used to anything and just increased the context size for
4649           no good reason.  This change also made silc_buffer_alloc and
4650           silc_buffer_free functions inline functions.
4651
4652         * Disabled command flooding detection support until it's fixed so 
4653           that it accepts commands in but does not execute them more than once
4654           in two seconds.
4655
4656         * Added silc_net_localhost(), to return local hostname, into
4657           lib/silcutil/silcnet.[ch].  Also added client->hostname pointer
4658           that must be initialized before calling silc_client_init.
4659
4660         * Added new function: silc_server_send_notify_on_channels to send
4661           notify messages to all channels client has joined.  It is assured
4662           that the message is sent only once per client.
4663
4664         * Moved silc_log_format (from lib/silcutil/silclog.[ch] into
4665           lib/silcutil/silcutil.[ch] as silc_format function.  The new 
4666           function is generic and is used by server as well, not only by
4667           the logging routines.
4668
4669         * Added new SKE status type: SILC_SKE_STATUS_BAD_VERSION to indicate
4670           the provided version string was not acceptable.  Added new function:
4671           silc_ske_check_version into lib/silcske/silcske.h.  The function
4672           must be implemented by the application (client or server) and it
4673           does not reside in the SKE library.  The function checks the version
4674           string remote end sent.
4675
4676         * Added back pointers (to opaque context and to SilcSocketConnection) 
4677           into SilcPacketContext structure into lib/silccore/silcpacket.h.
4678
4679         * Added silc_packet_context_dup into lib/silccore/silcpacket.[ch] to
4680           duplicate packet context structure.
4681
4682         * Changed `notify' client operation to send same arguments as client
4683           receives from server except for ID's.  ID's are mapped to correct
4684           ID entry and that is returned.  Also, if channel entry is not sent
4685           by server but the notify is for channel the channel entry is sent
4686           to application (otherwise application doesn't know that it is for
4687           channel (library gets it from packet's Destination ID)).
4688
4689         * Added silc_client_remove_from_channels into client library to 
4690           remove a client from all channels it has joined to.  Used when 
4691           received SIGNOFF notify from server.  Added also new function
4692           silc_client_replace_from_channels to replace old ID entry with
4693           new ID entry on all channels.  Used when received NICK_CHANGE
4694           notify from server.
4695
4696         * Fixed ID Cache list handling in silc_idlist_get_client in 
4697           lib/silcclient/idlist.c.  Also, added silc_idlist_get_client_by_id
4698           to get (or query) client by ID.
4699
4700         * Updated TODO list.
4701
4702         * Added connection authentication status message defined by the
4703           protocol: SILC_CONN_AUTH_OK and SILC_CONN_AUTH_FAILED and added the
4704           support for these into the code in client and server side.
4705
4706         * Added generic function silc_client_send_command to send any command
4707           with variable argument list.  Application should use this function
4708           to send commands if the command functions provided by the library
4709           does not suite for the application's user interface needs.
4710
4711         * Added new `failure' client operation.  Application is notified about
4712           received failure packet if client is executing a protocol.  In this
4713           case the protocol's execution has failed.
4714
4715         * Added SKE's end notify to send the SKE_SUCCESS notify message that
4716           is required by the protocol.
4717
4718         * Added SILC_PROTOCOL_STATE_FAILURE to indicate received failure
4719           packet from remote.  SILC_PROTOCOL_STATE_ERROR indicates local
4720           error at our end.
4721
4722         * Added status flag to SilcSKE object to indicate realtime status
4723           of the SKE protocol.
4724
4725         * Application receives now exactly same command reply arguments as
4726           the library receives from server.  However, if ID is received the
4727           corresponding ID entry is returned to the application (eg. Client
4728           ID is mapped to correct SilcClientEntry entry and that is returned).
4729           Changed command_reply client operation due to this change.
4730
4731         * Changed all ID's in commands and in command replys as ID Payloads.
4732           Change affected both client and server side codes.
4733
4734           All ID's sent in SILC network (with execption of ID's in SILC
4735           Packet header) are sent in ID Payload to support variable length
4736           ID's.
4737
4738         * Server now notifies nick changes and notifies all clients on
4739           the channels about the new nickname (about the new Client ID,
4740           actually).
4741
4742         * Implemented CMODE command to change channel modes. Supports all
4743           channel modes defined by the protocol specs except ban and invite
4744           lists. (Also, private channel key mode is supported but support for
4745           setting private channel key in client is missing, thus, this mode
4746           has no effect on client side (except that server requires that the
4747           client uses private channel key and normal channel traffic does not
4748           work anymore)).
4749
4750           Also, invite mode works per se, but INVITE command does not work
4751           yet correctly, so you can set channel as invite only channel but
4752           inviting clients to the channel does not work (it is yet to be
4753           thought what's the best way to do it).
4754
4755         * Added new command SILC_COMMAND_CUMODE to change user mode on the
4756           channel.  Defined user modes: CHANNEL_FOUNDER and CHANNEL_OPERATOR.
4757           Implemented CUMODE command to change user's mode on the channel.
4758           Supports all modes defined by the protocol specs.
4759
4760         * Added NAMES command reply to return users modes on the channel.
4761
4762         * Removed unnecessary and slow ciphers from lib/silccrypt.
4763
4764         * Set SO_KEEPALIVE option to connection sockets by default.
4765
4766         * Added new command reply status: SILC_STATUS_USER_NOT_ON_CHANNEL.
4767
4768         * Added notify types: MOTD, CMODE_CHANGE and CUMODE_CHANGE.  Also,
4769           redefined the Notify Payload into protocol specs.
4770
4771         * Added silc_id_payload_parse_id to get ID directly from raw
4772           ID payload data.
4773
4774 Mon Oct  9 20:57:02 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4775
4776         * Changed SILC_COMMAND_IDENTIFY in protocol specification to 
4777           accept searching by Client ID as well.
4778
4779         * Added support for LEAVE and SIGNOFF notify types in client library.
4780
4781         * Added silc_id_payload_parse_data into lib/silccore/silcpayload.[ch]
4782           to parse ID Payload from raw data.
4783
4784 Sun Oct  8 19:33:08 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4785
4786         * Added flags parameter into silc_ske_assemble_security_properties
4787           function in lib/silcske/silcske.[ch].
4788
4789         * Changed notify client operation to fit better for notify messages
4790           sent by server.  The notify payload received from server is now
4791           passed to the application (after parsing it to SilcNotifyPayload).
4792           It is application's responsibility to retrieve the arguments
4793           from the payload and show the message the way it wants.  The message
4794           sent by server is implementation specific.
4795
4796         * Changed public keys to comply with the protocol specification.
4797           Old public keys are not supported anymore and are not compatible.
4798
4799         * Removed nickname from Channel Payload as the latest draft removed
4800           it.  The client must resolve the nickname from the NAMES command
4801           reply received when it joined the channel.
4802
4803           Also, changed all channel_xxxx_payload to channel_payload_xxxx.
4804
4805 Sat Oct  7 21:55:01 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4806
4807         * Fixed some errors in protocol specification drafts.
4808
4809         * Created lib/silccore/silcnotify.c to implement Notify Payload
4810           encoding and decoding, lib/silccore/silcpayload.[ch] to implement
4811           generic payloads described by protocol specifications.  The file
4812           includes implementations for ID Payload and Argument Payload.
4813
4814         * Changed Command Payload implementation to use the new Argument
4815           Payload.  Changed command_xxxx_payload to command_payload_xxxx
4816           to comply with SILC coding conventions.
4817
4818         * Added suppport for Argument Payload handling in Notify Payload
4819           implementation as protocol requires it.  Added the new support
4820           into server and client lib as well.
4821
4822 Thu Oct  5 21:16:28 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4823
4824         * Added support for multiple nicknames on same channel.  [n] is
4825           added locally to the nickname if there are more than one same
4826           nicknames on the channel.
4827
4828         * Server now sends all nicknames that matched WHOIS request.
4829           Client also shows the list received from server.
4830
4831         * Added TOPIC command to client side.  User can now set and show
4832           current topic on channel.
4833
4834         * Added MOTD command to client and server.  Also, server sends the
4835           motd when client connects to the server.
4836
4837         * Changed version strings to comply ISO 8601.
4838
4839 Wed Oct  4 23:29:06 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4840
4841         * Fixed protocol error handling in client library.  It should now
4842           cope even if the SKE fails for some reason.
4843
4844         * Made new protocol specification drafts for submitting to IETF.
4845
4846         * Implemented TOPIC command to server in silcd/command.c.
4847
4848         * Added two new notify types into lib/silccore/silcnotify.h:
4849           SILC_NOTIFY_TYPE_NICK_CHANGE and SILC_NOTIFY_TYPE_TOPIC_SET to
4850           notify nickname change and topic setting/change on a channel.
4851
4852         * API change of command_reply operation in client library.  The
4853           application gets now the status type received from server as well.
4854
4855 Sat Sep 30 16:57:42 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4856
4857         * Removed the function just added to lib/silcutil/silcschedule.[ch].
4858
4859         * Cras fixed and optimized the packet handling even further and
4860           it should work now.  Minor change to the prototype of function
4861           silc_packet_receive_process in lib/silccore/silcpacket.[ch].
4862
4863 Sat Sep 30 08:48:47 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4864
4865         * Added new function into lib/silcutil/silcschedule.[ch]:
4866           silc_schedule_with_fd to select() a specified fd.  The function
4867           returns after timeout expires or data arrives or goes.  The
4868           function is used by packet routines to wait that all data is
4869           received from network.
4870
4871         * Fixed data reading from network in lib/silccore/silcpacket.c.
4872           The code now assures that all data is read from the fd and then
4873           continues packet processing.  This was a bug fix since the code
4874           used to drop some data in some circumstances.
4875
4876         * Added new function into lib/silcclient/client.[ch]:
4877           silc_client_start_key_exchange to start key exchange after
4878           connection has been established to server.  The code internally
4879           now uses this funtion but its main purpose was to provide it
4880           for applications that perform their own connecting.  After
4881           application has created a connection it merely calls this
4882           function to start the key exchange between client and server.
4883           The library takes care of everything else after that.
4884
4885           Updated also lib/silcclient/README to explain the usage of
4886           this new function.
4887
4888         * Do not send to application information that connection has
4889           been established.  Application gets notified it by connect
4890           operation anyway.
4891
4892 Thu Sep 28 23:40:19 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4893
4894         * Applied cras's patch to add silc_schedule_one function.  The
4895           function runs scheduler once and returns.
4896
4897         * Fixed the scheduler after cras messed it up.  The timeout
4898           handling works now as it's supposed to work.
4899
4900         * Added into lib/silccore/ silcnotify.h to include notify
4901           message types support.  Changed silc_server_send_notify*
4902           functions, in server.[ch], to support those new notify types.
4903           Added the support for the notify types into client library,
4904           as well.  Added new notify client operation into ops.h in
4905           lib/silcclient/.
4906
4907         * Changed silc_server_packet_send_to_channel to send normal
4908           packets instead of just channel message packets.  The function
4909           is now used to send the notify packets to channels.  It is not
4910           used to send channel message packets anymore, as server never
4911           sends them anymore.
4912
4913         * Added explicit casting into lib/silcutil/silcbuffmt.c to few
4914           va_arg()s as it seems to require it nowadays.  I guess, if SILC
4915           is compiled with older va_arg() the new code should work anyway.
4916
4917 Wed Sep 13 18:10:14 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4918
4919         * Splitted core library.  Core library (lib/silccore) includes
4920           now only SILC protocol specific core (and common) components.
4921           Created new utility library (lib/silcutil) that includes more
4922           generic purpose stuff.  The stuff for util library was taken
4923           from the old core library.  This was minor and easy split.
4924
4925         * Created SILC Client Library (lib/silcclient) that includes
4926           implementation of the SILC client without user interface.  This
4927           was major move from silc/ directory.  The code has been changed
4928           so that it is transparent towards the user interface.  The
4929           silc/ directory includes now the same user interface as before
4930           and it uses the new client library.  Read lib/silcclient/README.
4931           Basicly, the client library performs everything else related
4932           to SILC except user interface handling.  Also, configuration
4933           files are considered to be part of user interface and library
4934           does not handle them.
4935
4936           This change also changed a lot of structures, function naming etc.
4937           Most important change was that SilcClientWindow object was
4938           renamed to SilcClientConnection in the client library.  Created
4939           also new file lib/silcclient/ops.h.  Also added new files
4940           silc/local_command.[ch] and silc/client_ops.[ch].
4941
4942           All these changes were made to make it easier for user interface
4943           designers to create what ever user interface for the SILC client
4944           they want.
4945
4946           It is also expected that the server will be moved to lib
4947           directory as well and SILC Server Library will be created;
4948           sometimes in the future.
4949
4950         * Removed Local commands from lib/silccore/silccommand.h as
4951           they are application specific and new client library does not
4952           handle any of those anymore.
4953
4954         * Several functions moved to lib/silcutil/silcutilc.[ch] from
4955           old client implementation in silc/.
4956
4957         * Added support for callback functions in SILC_LOG_* macros.
4958           Application can now set its own callbacks that will be called
4959           instead of using the default functions that will always print
4960           the debug messages to stderr (or stdout).  Also, debugging can
4961           now be disabled by setting silc_debug to FALSE and re-enabled by
4962           setting it to TRUE.  Note, that logging will still work even
4963           if debugging is disabled.
4964
4965           New functions in lib/silcutil/silclog.[ch]: silc_log_set_callbacks,
4966           silc_log_reset_callbacks, silc_log_set_debug_callbacks and
4967           silc_log_reset_debug_callbacks.
4968
4969         * To enable debugging in silc client one must give now -d
4970           option on command line.
4971
4972         * Changed silc_schedule_init to automatically allocate task queues
4973           if they are not allocated before calling it.
4974
4975 Thu Sep  7 10:49:33 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4976
4977         * Added GMP 3.1 into math library.
4978
4979 Sun Aug 20 21:27:26 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4980
4981         * Added SILC_PACKET_REMOVE_CHANNEL_USER to remove a client from
4982           a channel in SILC network.  The packet is used by servers and
4983           routers to notify other routers that user has left a channel.
4984           This little feature was missing until now.  Added the feature
4985           to protocol specification as well.
4986
4987           Added functions: silc_server_send_remove_channel_user and
4988           silc_server_remove_channel_user into server.[ch].
4989
4990         * Added SILC_PACKET_REKEY and SILC_PACKET_REKEY_DONE into
4991           lib/silccore/silcpacket.h.  However, they are not implemented
4992           yet.
4993
4994 Sat Aug 19 23:04:16 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
4995
4996         * Fixed joining to a channel and sending channel messages
4997           between server and router.  The channel message sending should
4998           now work inside a cell.
4999
5000 Tue Jul 25 20:46:13 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5001
5002         * Fixed the private message sending between server and router.
5003           The private message sending should now work inside a cell.
5004
5005         * Added silc_server_replace_id into server.[ch] to replace
5006           existing ID in the SILC network.
5007
5008         * Added silc_idlist_find_server_by, silc_idlist_replace_client_id
5009           and silc_idlist_replace_server_id into idlist.[ch] in server.
5010
5011 Mon Jul 24 18:33:31 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5012
5013         * Fixed the server to server connections.  Server can again now
5014           connect to router.  Router to router connections probably does
5015           not work just yet.
5016
5017 Thu Jul 20 13:15:01 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5018
5019         * Added dynamic protocol registering support.  Now protocols can
5020           registered and unregistered on the fly.  Patch by cras.
5021
5022 Wed Jul 19 19:08:46 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5023
5024         * Added lib/contrib directory to hold routines that some platforms
5025           don't have but are needed by SILC.
5026
5027         * Added getopt.c, getopt1.c and getopt.h from GNU C library
5028           into lin/contrib to provide getopt() and getopt_long() for
5029           those who don't have it.
5030
5031 Tue Jul 18 20:41:20 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5032
5033         * Added AWAY command to client.  When away message is set and
5034           client receives a private message packet the client automatically
5035           replies to the sender with the away message.
5036
5037         * Fixed a bug in lib/silcmath/mpbin.c: silc_mp_mp2bin.  This
5038           bug seemed to be the cause of recent problems when compiling
5039           with gcc-2.95.
5040
5041         * Added version detection support to SKE protocol specification
5042           and added the new changes to the SKE implementation as well.
5043           There were other minor changes in the SKE protocol as well.
5044
5045           Many changes in lib/silcske/silcske.[ch] and in
5046           lib/silcske/payload.[ch].
5047
5048         * Added ^U functionality, clear input line.  Patch from cras.
5049
5050 Mon Jul 17 23:33:26 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5051
5052         * Mainly small bugfixes on core library.  Fixed some debugging
5053           logging and buffer overflow in silclog.c.
5054
5055         * Updated config.sub and config.guess on the distribution tree.
5056
5057 Sat Jul 15 15:33:48 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5058
5059         * Added command lagging support in server. Client may execute
5060           commands now only once in two seconds.
5061
5062 Thu Jul 13 22:10:21 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5063
5064         * Optimized packet reception. MAC computation and checking is now
5065           also more optimized.  A lot previously duplicated code is now
5066           used as generic by both client and server.
5067
5068         * Fixed key pair generation in clientutil.c
5069
5070 Wed Jul 12 18:28:07 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5071
5072         * Added into lib/silccore/silcbufutil.[ch] new function;
5073           silc_buffer_realloc.
5074
5075         * Moved generic packet sending/encryption functions to 
5076           lib/silccore/silcpacket.[ch] from client and server.  Some
5077           rewriting of the functions.
5078
5079         * Moved all generic packet reception/decryption functions to
5080           lib/silccore/silcpacket.[ch] from client and server.  The
5081           packet processing is now much cleaner in both client and server.
5082           These were major changes in both client and server.
5083
5084         * Created many common functions in server to do packet sending.
5085           Previously code were duplicated a lot, this has been removed
5086           with these changes.
5087
5088 Tue Jul 11 20:27:26 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5089
5090         * Rewrote major parts of the ID cache system.  Don't know 
5091           whether it is better now or not but at least the API is more
5092           cleaner now.
5093
5094         * Major rewrite on ID cache stuff on client because of the ID
5095           cache API changes.  Added idlist.c to client.
5096
5097         * Also major rewrite on ID cache stuff on server as well.
5098           Major rewrite of idlist.[ch]. SilcXXXList's are now named
5099           SilcXXXEntry's.  We won't keep anymore idlist specific pointers
5100           in hand, instead they are all put into the ID cache system now.
5101           All server_idlist_* routines uses ID cache now instead of
5102           traversing its own lists (those lists does not exist anymore).
5103           SilcIDList though still exists.  Also, SilcXXXEntry's are
5104           now pointers.
5105
5106 Sun Jul  9 15:19:24 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5107
5108         * Finally made the SKE implementation compliant to the protocol
5109           specification.  All mp integers are now binary encoded as
5110           opposed being HEX encoded.
5111
5112         * Added lib/silcmath/mpbin.[ch].  Encoding mp intergers to and
5113           from binary data.
5114
5115         * Added into lib/silccore/silcutil.[ch] PEM encoding/decoding
5116           functions: silc_[encode/decode]_pem.  Also added function
5117           silc_encode_pem_file to PEM encode with newlines ('\n') for
5118           saving into a file.
5119
5120         * SILC public keys are now encoded either PEM or binary.  Same
5121           option is for private keys as well.  By default private keys
5122           are binary encoded and public keys PEM encoded.  Silly HEX
5123           encoding were removed.
5124
5125         * Added into lib/silccrypt/silchash.[ch] silc_hash_fingerprint
5126           function to create fingerprints.
5127
5128         * Fixed a bug in SHA1; does not change the original data anymore.
5129
5130         * Partly implemented INFO command on client and server side.
5131           Fixed CLEAR command.  Changes to SERVER command; show current
5132           server(s) when giving command without arguments.  Added
5133           VERSION command to client.
5134
5135         * Added check to server that unregistered connections cannot
5136           execute commands (unless it is specificly allowed).
5137
5138 Thu Jul  6 18:12:24 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5139
5140         * Fixed screen refresh.
5141
5142         * Fixed channel joining bug from client.  On some circumstances
5143           client tried to join to a channel it had already joined.
5144
5145         * Added public key verification process into client's protocol.c.
5146           The client now verifies the public key from user and saves
5147           it into ~./silc/serverkeys/ directory. 
5148
5149           Added into: clientutil.[ch]: silc_client_verify_server_key.
5150
5151         * Changed SKE protocol's silc_ske_initiator_finish function
5152           to accept callback function that verifies the received public
5153           key.  Removed old silc_ske_verify_public_key function.
5154
5155 Wed Jul  5 19:19:02 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5156
5157         * Added into silcpkcs[ch]: silc_pkcs_public_key[_data]_set and
5158           silc_pkcs_private_key[_data]_set.
5159
5160         * Made the password and public authentication more cleaner in
5161           server's protocol.c.
5162
5163         * Removed historic and obsolete protocol `channel_auth' from
5164           both client and server.
5165
5166         * Removed wrong way of sending command status messages from
5167           server to client in server's command.c.  The old way violated
5168           protocol specification.  
5169
5170           Changes to silccore/silccommand.[ch]: removed
5171           silc_command_encode_status_payload -> not needed anymore,
5172           changed silc_command_encode_payload_va to accept extra
5173           argument on variable argument list.  The argument type must
5174           now be provided to the function.  Also, added new function:
5175           silc_command_encode_reply_payload_va which is same as
5176           normal command_encode_payload_va except command status type
5177           is provided as extra argument.
5178
5179 Tue Jul  4 18:26:39 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5180
5181         * Added ~./silc directory handling.  The directory includes the
5182           public and private keys for the client.
5183
5184           Added silc_client_check_silc_dir, silc_client_create_identifier
5185           and silc_client_load_keys.
5186
5187         * Implemented SILC protocol compliant public key.  Added public
5188           and private key saving to and loading from files.
5189
5190           Added into silcpkcs.[ch]: silc_pkcs_encode_identifier,
5191           silc_pkcs_public_key_encode[_data], silc_pkcs_public_key_decode,
5192           silc_pkcs_private_key_encode[_data], silc_pkcs_private_key_decode,
5193           silc_pkcs_public_key_alloc, silc_pkcs_public_key_free,
5194           silc_pkcs_private_key_alloc and silc_pkcs_private_key_free.
5195
5196           Implemented: silc_pkcs_save_[public/private]_key[_data] and
5197           silc_pkcs_load_[public/private]_key.
5198
5199 Mon Jul  3 18:51:27 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5200
5201         * Added silc_server_get_route (route.[ch]) to get connection
5202           data for the fastest route for given ID.
5203
5204         * Implemented INVITE command on client and server.  The command
5205           were re-defined in the SILC Protocol Specification and the
5206           implementation now complies with the specification.
5207
5208         * Implemented PING command on client and server.
5209
5210         * Implemented NAMES command on client and server.  The server side
5211           supports currently only normal server not router server yet.
5212           Some changes to NAMES definition in SILC protocol specification.
5213
5214 Sun Jul  2 18:23:01 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5215
5216         * Implemented LEAVE command on client and server.
5217
5218         * Previously deprecated SILC_PACKET_FORWARDED flag is now in use 
5219           again.  This change was made to the protocol as well.  Server
5220           should not violate the protocol specification anymore.
5221
5222 Fri Jun 30 14:03:26 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
5223
5224         * Added SOCKS4 and SOCKS5 support to SILC client.  SOCKS5
5225           was tested.  SOCKS4 was not but should work anyway.