From: Pekka Riikonen Date: Fri, 14 Jul 2000 06:07:10 +0000 (+0000) Subject: updates X-Git-Tag: SILC.0.1~456 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=c928ed66c3b2bb7a96b7c9055db9e1c1d1755057 updates --- diff --git a/CHANGES b/CHANGES index 9ccf7079..f9fcec41 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,29 @@ +Thu Jul 13 22:10:21 EEST 2000 Pekka Riikonen + + * Optimized packet reception. MAC computation and checking is now + also more optimized. A lot previously duplicated code is now + used as generic by both client and server. + + * Fixed key pair generation in clientutil.c + +Wed Jul 12 18:28:07 EEST 2000 Pekka Riikonen + + * Added into lib/silccore/silcbufutil.[ch] new function; + silc_buffer_realloc. + + * Moved generic packet sending/encryption functions to + lib/silccore/silcpacket.[ch] from client and server. Some + rewriting of the functions. + + * Moved all generic packet reception/decryption functions to + lib/silccore/silcpacket.[ch] from client and server. The + packet processing is now much cleaner in both client and server. + These were major changes in both client and server. + + * Created many common functions in server to do packet sending. + Previously code were duplicated a lot, this has been removed + with these changes. + Tue Jul 11 20:27:26 EEST 2000 Pekka Riikonen * Rewrote major parts of the ID cache system. Don't know diff --git a/includes/silcincludes.h b/includes/silcincludes.h index 01993c60..74167506 100644 --- a/includes/silcincludes.h +++ b/includes/silcincludes.h @@ -143,13 +143,13 @@ #include "silcconfig.h" #include "id.h" #include "idcache.h" -#include "silcpacket.h" #include "silctask.h" #include "silcschedule.h" #include "silcprotocol.h" +#include "silcsockconn.h" #include "silccommand.h" #include "silcchannel.h" -#include "silcsockconn.h" +#include "silcpacket.h" #ifdef SILC_SIM /* SILC Module library includes */