Reprocess JOIN command synchronously after resolving channel
[crypto.git] / CHANGES.RUNTIME
1 Tue Nov  6 17:09:42 EET 2007  Pekka Riikonen <priikone@silcnet.org>
2
3         * Added '%@' formatting to silc_snprintf and variants.  It
4           can be used to render data and structures.  Affected files
5           are lib/silcutil/silcsnprintf.[ch].
6
7 Sat Oct 27 18:12:40 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
8
9         * Added silc_net_tcp_create_listener2.  Affected files are
10           lib/silcutil/silcnet.h and platform specific implementation.
11
12 Sat Sep  1 12:09:32 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
13
14         * Rewrote parts of the SILC Atomic API to not use volatile
15           members in structures but to handle the memory accesses
16           volatily, the right way to do it.  Affected file is
17           lib/silcutil/silcatomic.h.
18
19         * Added silc_timer_tick and silc_timer_synchronize functions
20           to SILC Timer API.  Affected files are 
21           lib/silcutil/silctimer.[ch] and silctimer_i.h.
22
23         * Use clock_gettime in place of gettimeofday, if it is
24           available.  Affected files are configure.ad and
25           lib/silcutil/unix/silcunixutil.c.
26
27         * Added silc_offsetof, silc_likely and silc_unlikely to public
28           API.  Added silc_attribute compiler specific definition.
29           Affected file is lib/silcutil/silctypes.h.
30
31         * Added silc_prefetch and silc_prefetch_block functions that
32           provide routines for prefetching data to CPU cache.  Affected
33           file is lib/silcutil/silctypes.h.
34
35         * Added --with-alignment for specifying default memory alignment
36           used in the compiled code.  Currently only SilcStack respects
37           this value.  Affected files are lib/configure.ad,
38           lib/silcutil/silcstack_i.h and includes/silc.h.in.
39
40 Tue Aug  7 21:00:00 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
41
42         * Fixed alignment issues on 64-bit CPUs.  Affected files are
43           lib/silcutil/silcschedule.c and unix/silcunixschedule.c.
44
45 Sat Aug  4 19:09:14 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
46
47         * Added assembler optimized versions of SILC_[GET|PUT]XX_MSB
48           macros, and SILC_SWAB_XX macros.  Added new functions
49           silc_rol, silc_ror, silc_rol64 and silc_ror64, all of which
50           have assembler optimizations also.  Affected file is
51           lib/silcutil/silctypes.h.
52
53 Thu Jul 26 18:13:59 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
54
55         * Changed thread pool call queues thread specific and changed
56           queues to be consumed in last-in-first-out order.  These
57           are optimizations to the thread pool.  Affected file is
58           lib/silcutil/silcthread.c.
59
60 Wed Jul 25 19:32:41 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
61
62         * Added silc_mime_assembler_purge to lib/silcutil/silcmime.[ch]
63           to purge unfinished fragments from MIME assembler.
64
65 Sat Jul 21 14:47:28 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
66
67         * Added silc_data2hex and silc_hex2data to
68           lib/silcutil/silcutil.[ch].
69
70 Thu Jul 19 17:07:02 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
71
72         * Added silc_buffer_strchr to lib/silcutil/silcbuffer.h.
73
74 Tue Jul 17 20:10:41 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
75
76         * Added silc_hexdump to lib/silcutil/silcutil.[ch].
77
78 Fri Jul 13 23:01:45 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
79
80         * Added SILC_GET32_X_MSB macro to lib/silcutil/silctypes.h.
81
82 Wed Jul 11 17:10:11 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
83
84         * Added SILC Timer API to lib/silcutil/silctimer.[ch],
85           silctimer_i.h, tests/test_silctimer.c.
86
87 Tue Jul 10 20:02:04 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
88
89         * Added queue entry free list to thread pool instead of
90           allocating new entry everytime new entry is needed.  Affected
91           file is lib/silcutil/silcthread.c.
92
93 Mon Jul  9 20:21:13 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
94
95         * Changed thread pool completion callback to SilcTaskCallback so
96           that it can be given directly to destination scheduler.
97           Affected files are lib/silcutil/silcthread.[ch].
98
99 Sun Jul  8 20:20:22 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
100
101         * Moved Base64 routines to lib/silcutil/silcbase64.[ch].  Added
102           SilcStack support to the API.
103
104         * Inherit the lock from parent in SilcStack child.  If child
105           doesn't find stack blocks, check from parent.  Added
106           silc_stack_purge.  Affected file is lib/silcutil/silcstack.c.
107
108 Wed Jul  4 20:20:05 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
109
110         * Unified the SILC_STR_FUNC callback.  Affected files are
111           lib/silcutil/silcbuffmt.[ch].
112
113         * Added SilcStack support to SILC File Util API.  Affected files
114           are lib/silcutil/silcfileutil.[ch].
115
116         * Added SilcStack support to SILC FD Stream API.  Affected files
117           are lib/silcutil/silcfdstream.[ch].
118
119         * Added SilcStack support to SILC Scheduler API.  The scheduler
120           now creates stack always.  It can be retrieved by
121           silc_schedule_get_stack.  Affected files are
122           lib/silcutil/silcschedule.[ch], silcschedule_i.h.
123
124         * Added SilcStack child creation and use multi-thread support.
125           Added OOM handler, silc_stack_set_oom_handler.  Affected
126           files are lib/silcutil/silcstack.[ch].
127
128 Tue Jul  3 22:45:56 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
129
130         * Added concept of child stacks to SilcStack, allowing to create
131           true memory pools using SilcStack.  It is now possible to
132           create childs from the parent, without consuming the parent's
133           memory.  The child's memory is returned back to parent when
134           it is freed.  Affected files are lib/silcutil/silcstack.[ch],
135           silcstack_i.h.
136
137 Tue Jul  3 18:17:54 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
138
139         * Added SILC DLL API for loading and using shared objects and
140           DLLs.  Affected files are lib/silcutil/sildll.[ch].  Added
141           also test program lib/silcutil/tests/test_silcdll.c.
142
143         * Added SILC Environment manipulation API to
144           lib/silcutil/silcenv.[ch] and test program to
145           lib/silcutil/tests/test_silcenv.c.
146
147         * Renamed silc_hash_table_replace to silc_hash_table_set.
148           Added SilcStack support to SilcHashTable.  Affected files are
149           lib/silcutil/silchashtable.[ch].
150
151         * Added SilcStack support to SilcDList.  Added new function
152           silc_dlist_sinit.  Affected file is lib/silcutil/silcdlist.h.
153
154 Mon Jul  2 21:07:34 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
155
156         * Removed unaligned memory allocation from SilcStack.  Moved
157           silc_stack_malloc and silc_stack_realloc to public API from
158           private API.  Added silc_stack_[set|get]_alignment that is
159           used to get/set memory alignment with SilcStack.  Affected
160           files are lib/silcutil/silcstack.[ch], silcstack_i.h.
161
162         * Added silc_sfree to lib/silcutil/silcmemory.[ch].
163
164         * Removed silc_smalloc_ua and silc_srealloc_ua.  Affected files
165           are lib/silcutil/silcmemory.[ch].
166
167 Mon Jul  2 17:13:51 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
168
169         * Added SILC Thread Pool API to lib/silcutil/silcthread.[ch],
170           and test program in lib/silcutil/tests/test_silcthread.c.
171
172 -----------------------------------------------------------------------------
173
174 For older changes please see the CHANGES file from the CVS tree.