X-Git-Url: http://git.silcnet.org/gitweb/?p=crypto.git;a=blobdiff_plain;f=CHANGES.RUNTIME;h=f97fb9ddcc364a01008ae8991723cce360d9b777;hp=9d7a6ffc0b9ccae3bb3db62682fdc41af07c6dcd;hb=f2462c5dd7e885e3daa00066fbf53e166fd361e0;hpb=20a4530c0db6d4317d8a9952edd1655e10b83844 diff --git a/CHANGES.RUNTIME b/CHANGES.RUNTIME index 9d7a6ffc..f97fb9dd 100644 --- a/CHANGES.RUNTIME +++ b/CHANGES.RUNTIME @@ -1,3 +1,102 @@ +Tue Jan 1 18:00:47 EET 2008 Pekka Riikonen + + * Added silc_regex and silc_regex_buffer, routines that provide + convenient use of regular expressions. Affected files + are lib/silcutil/silcregex.[ch]. Deprecated the + silc_string_regex_match. Affected files are + lib/silcutil/silcstrutil.[ch]. + + * Added SILC_STR_REGEX macro to SILC Buffer Format API. It + provides powerful regular expression matching within the + SilcBuffer. Combined with SILC Buffer Format API it can turn + the API into a Stream Editor (sed) and Awk like, providing + powerful ways to match and edit the buffer in myriad of ways. + The SILC_STR_REGEX can also mimic the behavior of sed (match + and edit line by line). Affected files are + lib/silcutil/silcbuffmt.[ch], silctypes.h. + +Mon Dec 31 15:50:31 EET 2007 Pekka Riikonen + + * Added SILC_STR_OFFSET_START and SILC_STR_OFFSET_END to + lib/silcutil/silcbuffmt.[ch]. + +Mon Dec 31 01:30:17 EET 2007 Pekka Riikonen + + * Added SILC regular expression API to lib/silcutil/silcregex.[ch]. + +Sun Dec 30 14:35:33 EET 2007 Pekka Riikonen + + * Implemented asynchronous events to SILC Scheduler. Added + silc_schedule_task_add_event, silc_schedule_event_connect, + silc_schedule_event_dissconnect, silc_schedule_task_del_event + and silc_schedule_event_signal. Affected files are + lib/silcutil/silcschedule.[ch], silcschedule_i.h. + + * Added concept of child and parent scheduler to SILC Scheduler + API. silc_schedule_init now takes optional parent argument. + Each child scheduler is still independent, only the event tasks + are shared among parent and children. Affected files are + lib/silcutil/silcschedule.[ch]. + + * The SILC FSM real thread now adds the created SilcSchedule + as the thread's global scheduler. Affected file is + lib/silcutil/silcfsm.[ch]. + + * Moved generic string and data hashing and comparison functions + from lib/silcutil/silcutil.[ch] to lib/silcutil/silchashtable.[ch] + as they are usable by the hash table. Added case sensitive + and insensitive string hashing and comparison funtions. + Changed string and data hashing to use Bob Jenkin's one-at-a-time + hash function. + + * Moved SILC_PARAM_* types from silcbuffmt.h to silctypes.h + under a generic SilcParam type. Affected files are + lib/silcutil/silcbuffmt.[ch] and lib/silcutil/silctypes.h. + +Wed Dec 26 13:10:30 EET 2007 Pekka Riikonen + + * Added silc_schedule_[set|get]_global to + lib/silcutil/silcschedule.[ch]. + + * Changed many APIs to call silc_schedule_get_global if provided + scheduler argument is NULL. + +Tue Dec 25 18:44:27 EET 2007 Pekka Riikonen + + * silc_stack_alloc now automatically aligns the requested + stack size. Affected files are lib/silcutil/silcstack.[ch]. + +Tue Dec 25 13:53:07 EET 2007 Pekka Riikonen + + * Added silc_getopt to lib/silcutil/silcgetopt.[ch]. + +Sat Dec 22 19:55:28 EET 2007 Pekka Riikonen + + * Added SILC errno API to lib/silcutil/silcerrno.[ch]. Added + SilcResult, generic error code and return value type. Added + global silc_errno that returns last error in that thread. + + * Deprecated SilcSocketStreamStatus, SilcResult replaces it. + Backwards support remains. Affected files are + lib/silcutil/silcsocketstream.[ch]. + + * Deprecated SilcNetStatus, SilcResult replaces it. Backwards + support remains. Affected files are lib/silcutil/silcnet.[ch]. + + * Added errno setting to almost all Runtime Tooolkit routines + in error conditions. + +Sun Dec 16 16:18:04 EET 2007 Pekka Riikonen + + * Added SILC Bit Operations API to lib/silcutil/silcbitops.[ch]. + +Sat Dec 15 19:59:53 EET 2007 Pekka Riikonen + + * Added SILC Tls API for Thread-local storage in + lib/silcutil/silcthread.[ch]. Added all platform specific + implementations. Added SilcTls structure to + lib/silcutil/silcthread_i.h that is now in all threads' Tls. + Thu Dec 13 17:37:21 EET 2007 Pekka Riikonen * Clear the locked flag before unlocking mutex, not after.