Watcher list support added.
[silc.git] / lib / silcutil / silchashtable.h
1 /*
2
3   silchashtable.h 
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2001 - 2002 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 /****h* silcutil/SILC Hash Table Interface
21  *
22  * DESCRIPTION
23  *
24  * Implementation of collision resistant hash table. This is a hash table
25  * that provides a reliable (what you add there stays there, and duplicate
26  * keys are allowed) with as fast reference to the key as possible. If
27  * there are a lot of duplicate keys in the hash table the lookup gets
28  * slower of course. However, this is reliable and no data is lost at any
29  * point. If you know that you never have duplicate keys then this is as
30  * fast as any simple hash table.
31  *
32  * The interface provides many ways to search the hash table including
33  * an extended interface where caller can specify its own hash and comparison
34  * functions.
35  *
36  * There are two ways to traverse the entire hash table if this feature
37  * is needed. There exists a foreach function that calls a foreach
38  * callback for each entry in the hash table. Other way is to use
39  * SilcHashTableList structure and traverse the hash table inside while()
40  * using the list structure. Both are equally fast.
41  *
42  ***/
43
44 #ifndef SILCHASHTABLE_H
45 #define SILCHASHTABLE_H
46
47 /****s* silcutil/SilcHashTableAPI/SilcHashTable
48  *
49  * NAME
50  * 
51  *    typedef struct SilcHashTableStruct *SilcHashTable;
52  *
53  * DESCRIPTION
54  *
55  *    This context is the actual hash table and is allocated
56  *    by silc_hash_table_alloc and given as argument usually to
57  *    all silc_hash_table_* functions.  It is freed by the
58  *    silc_hash_table_free function.
59  *
60  ***/
61 typedef struct SilcHashTableStruct *SilcHashTable;
62
63 /****s* silcutil/SilcHashTableAPI/SilcHashTableList
64  *
65  * NAME
66  * 
67  *    typedef struct SilcHashTableListStruct SilcHashTableList;
68  *
69  * DESCRIPTION
70  *
71  *    This structure is used to tarverse the hash table. This structure
72  *    is given as argument to the silc_hash_table_list function to 
73  *    initialize it and then used to traverse the hash table with the
74  *    silc_hash_table_get function. It needs not be allocated or freed.
75  *
76  * EXAMPLE
77  *
78  *    SilcHashTableList htl;
79  *    silc_hash_table_list(hash_table, &htl);
80  *    while (silc_hash_table_get(&htl, (void *)&key, (void *)&context))
81  *      ...
82  *    silc_hash_table_list_reset(&htl);
83  *
84  * SOURCE
85  */
86 typedef struct SilcHashTableListStruct SilcHashTableList;
87
88 /* List structure to traverse the hash table. */
89 struct SilcHashTableListStruct {
90   SilcHashTable ht;
91   void *entry;
92   SilcUInt32 index;
93   bool auto_rehash;
94 };
95 /***/
96
97 /****f* silcutil/SilcHashTableAPI/SilcHashFunction
98  *
99  * SYNOPSIS
100  *
101  *    typedef SilcUInt32 (*SilcHashFunction)(void *key, void *user_context);
102  *
103  * DESCRIPTION
104  *
105  *    A type for the hash function. This function is used to hash the
106  *    provided key value `key' and return the index for the hash table.
107  *    The `user_context' is application specific context and is delivered
108  *    to the callback.
109  *
110  ***/
111 typedef SilcUInt32 (*SilcHashFunction)(void *key, void *user_context);
112
113 /****f* silcutil/SilcHashTableAPI/SilcHashCompare
114  *
115  * SYNOPSIS
116  *
117  *    typedef bool (*SilcHashCompare)(void *key1, void *key2, 
118  *                                    void *user_context);
119  *
120  * DESCRIPTION
121  *
122  *    A comparison funtion that is called to compare the two keys `key1' and
123  *    `key2'. If they are equal this must return TRUE or FALSE otherwise.
124  *    The application provides this function when allocating a new hash table.
125  *    The `user_context' is application specific context and is delivered
126  *    to the callback.
127  *
128  ***/
129 typedef bool (*SilcHashCompare)(void *key1, void *key2, void *user_context);
130
131 /****f* silcutil/SilcHashTableAPI/SilcHashDestructor
132  *
133  * SYNOPSIS
134  *
135  *    typedef void (*SilcHashDestructor)(void *key, void *context, 
136  *                                       void *user_context);
137  *
138  * DESCRIPTION
139  *
140  *    A destructor callback that the library will call to destroy the 
141  *    `key' and `context'.  The appliation provides the function when
142  *    allocating a new hash table. The `user_context' is application
143  *    specific context and is delivered to the callback.
144  *
145  ***/
146 typedef void (*SilcHashDestructor)(void *key, void *context, 
147                                    void *user_context);
148
149 /****f* silcutil/SilcHashTableAPI/SilcHashForeach
150  *
151  * SYNOPSIS
152  *
153  *    typedef void (*SilcHashForeach)(void *key, void *context, 
154  *                                    void *user_context);
155  *
156  * DESCRIPTION
157  *
158  *    Foreach function. This is called when traversing the entrys in the
159  *    hash table using silc_hash_table_foreach. The `user_context' is
160  *    application specific context and is delivered to the callback.
161  *
162  ***/
163 typedef void (*SilcHashForeach)(void *key, void *context, void *user_context);
164
165 /* Simple hash table interface */
166
167 /****f* silcutil/SilcHashTableAPI/silc_hash_table_alloc
168  *
169  * SYNOPSIS
170  *
171  *    SilcHashTable silc_hash_table_alloc(SilcUInt32 table_size, 
172  *                                        SilcHashFunction hash,
173  *                                        void *hash_user_context,
174  *                                        SilcHashCompare compare,
175  *                                        void *compare_user_context,
176  *                                        SilcHashDestructor destructor,
177  *                                        void *destructor_user_context,
178  *                                        bool auto_rehash);
179  *
180  * DESCRIPTION
181  *
182  *    Allocates new hash table and returns it.  If the `table_size' is not
183  *    zero then the hash table size is the size provided. If zero then the
184  *    default size will be used. Note that if the `table_size' is provided
185  *    it should be a prime. The `hash', `compare' and `destructor' are
186  *    the hash function, the key comparison function and key and context
187  *    destructor function, respectively. The `hash' is mandatory, the others
188  *    are optional.
189  *
190  ***/
191 SilcHashTable silc_hash_table_alloc(SilcUInt32 table_size, 
192                                     SilcHashFunction hash,
193                                     void *hash_user_context,
194                                     SilcHashCompare compare,
195                                     void *compare_user_context,
196                                     SilcHashDestructor destructor,
197                                     void *destructor_user_context,
198                                     bool auto_rehash);
199
200 /****f* silcutil/SilcHashTableAPI/silc_hash_table_free
201  *
202  * SYNOPSIS
203  *
204  *    void silc_hash_table_free(SilcHashTable ht);
205  *
206  * DESCRIPTION
207  *
208  *    Frees the hash table. The destructor function provided in the
209  *    silc_hash_table_alloc will be called for all keys in the hash table.
210  *
211  ***/
212 void silc_hash_table_free(SilcHashTable ht);
213
214 /****f* silcutil/SilcHashTableAPI/silc_hash_table_size
215  *
216  * SYNOPSIS
217  *
218  *    SilcUInt32 silc_hash_table_size(SilcHashTable ht);
219  *
220  * DESCRIPTION
221  *
222  *    Returns the size of the hash table. This is the true size of the
223  *    hash table.
224  *
225  ***/
226 SilcUInt32 silc_hash_table_size(SilcHashTable ht);
227
228 /****f* silcutil/SilcHashTableAPI/silc_hash_table_count
229  *
230  * SYNOPSIS
231  *
232  *    SilcUInt32 silc_hash_table_count(SilcHashTable ht);
233  *
234  * DESCRIPTION
235  *
236  *    Returns the number of the entires in the hash table. If there is more
237  *    entries in the table thatn the size of the hash table calling the
238  *    silc_hash_table_rehash is recommended.
239  *
240  ***/
241 SilcUInt32 silc_hash_table_count(SilcHashTable ht);
242
243 /****f* silcutil/SilcHashTableAPI/silc_hash_table_add
244  *
245  * SYNOPSIS
246  *
247  *    void silc_hash_table_add(SilcHashTable ht, void *key, void *context);
248  *
249  * DESCRIPTION
250  *
251  *    Adds new entry to the hash table. The `key' is hashed using the
252  *    hash function and the both `key' and `context' will be saved to the
253  *    hash table. This function quarantees that the entry is always added
254  *    to the hash table reliably (it is collision resistant).
255  *
256  ***/
257 void silc_hash_table_add(SilcHashTable ht, void *key, void *context);
258
259 /****f* silcutil/SilcHashTableAPI/silc_hash_table_replace
260  *
261  * SYNOPSIS
262  *
263  *    void silc_hash_table_replace(SilcHashTable ht, void *key, void *context);
264  *
265  * DESCRIPTION
266  *
267  *    Same as silc_hash_table_add but if the `key' already exists in the
268  *    hash table the old key and the old context will be replaced with the
269  *    `key' and the `context. The destructor function will be called for the
270  *    replaced key and context.
271  *
272  ***/
273 void silc_hash_table_replace(SilcHashTable ht, void *key, void *context);
274
275 /****f* silcutil/SilcHashTableAPI/silc_hash_table_del
276  *
277  * SYNOPSIS
278  *
279  *    bool silc_hash_table_del(SilcHashTable ht, void *key);
280  *
281  * DESCRIPTION
282  *
283  *    Removes the entry from the hash table by the provided `key'. This will
284  *    call the destructor funtion for the found entry. Return TRUE if the
285  *    entry was removed successfully and FALSE otherwise.
286  *
287  ***/
288 bool silc_hash_table_del(SilcHashTable ht, void *key);
289
290 /****f* silcutil/SilcHashTableAPI/silc_hash_table_del_by_context
291  *
292  * SYNOPSIS
293  *
294  *    bool silc_hash_table_del_by_context(SilcHashTable ht, void *key, 
295  *                                        void *context);
296  *
297  * DESCRIPTION
298  *
299  *    Same as silc_hash_table_del but verifies that the context associated
300  *    with the `key' matches the `context'. This is handy to use with hash
301  *    tables that may have duplicate keys. In that case the `context' may
302  *    be used to check whether the correct entry is being deleted.
303  *
304  ***/
305 bool silc_hash_table_del_by_context(SilcHashTable ht, void *key, 
306                                     void *context);
307
308 /****f* silcutil/SilcHashTableAPI/silc_hash_table_find
309  *
310  * SYNOPSIS
311  *
312  *    bool silc_hash_table_find(SilcHashTable ht, void *key,
313  *                              void **ret_key, void **ret_context);
314  *
315  * DESCRIPTION
316  *
317  *    Finds the entry in the hash table by the provided `key' as fast as
318  *    possible. Return TRUE if the entry was found and FALSE otherwise. 
319  *    The found entry is returned to the `ret_key' and `ret_context',
320  *    respectively. If the `ret_key and `ret_context' are NULL then this
321  *    maybe used only to check whether given key exists in the table.
322  *
323  ***/
324 bool silc_hash_table_find(SilcHashTable ht, void *key,
325                           void **ret_key, void **ret_context);
326
327 /****f* silcutil/SilcHashTableAPI/silc_hash_table_find_by_context
328  *
329  * SYNOPSIS
330  *
331  *    bool silc_hash_table_find_by_context(SilcHashTable ht, void *key,
332  *                                         void *context, void **ret_key);
333  *
334  * DESCRIPTION
335  *
336  *    Finds the entry in the hash table by the provided `key' and
337  *    `context' as fast as possible.  This is handy function when there
338  *    can be multiple same keys in the hash table.  By using this function
339  *    the specific key with specific context can be found.  Return
340  *    TRUE if the entry with the key and context was found and FALSE
341  *    otherwise.  The function returns only the key to `ret_key' since
342  *    the caller already knows the context.
343  *
344  ***/
345 bool silc_hash_table_find_by_context(SilcHashTable ht, void *key,
346                                      void *context, void **ret_key);
347
348 /****f* silcutil/SilcHashTableAPI/silc_hash_table_find_foreach
349  *
350  * SYNOPSIS
351  *
352  *    void silc_hash_table_find_foreach(SilcHashTable ht, void *key,
353  *                                      SilcHashForeach foreach, 
354  *                                      void *user_context);
355  *
356  * DESCRIPTION
357  *
358  *    As the hash table is collision resistant it is possible to save duplicate
359  *    keys to the hash table. This function can be used to find all keys
360  *    and contexts from the hash table that are found using the `key'. The
361  *    `foreach' is called for every found key.
362  *
363  * NOTES
364  *
365  *    The hash table will not be rehashed during the traversing of the table,
366  *    even if the table was marked as auto rehashable.  The caller also must
367  *    not call silc_hash_table_rehash while traversing the table.
368  *
369  ***/
370 void silc_hash_table_find_foreach(SilcHashTable ht, void *key,
371                                   SilcHashForeach foreach, void *user_context);
372
373 /****f* silcutil/SilcHashTableAPI/silc_hash_table_foreach
374  *
375  * SYNOPSIS
376  *
377  *    void silc_hash_table_foreach(SilcHashTable ht, SilcHashForeach foreach,
378  *                                 void *user_context);
379  *
380  * DESCRIPTION
381  *
382  *    Traverse all entrys in the hash table and call the `foreach' for
383  *    every entry with the `user_context' context.
384  *
385  * NOTES
386  *
387  *    The hash table will not be rehashed during the traversing of the table,
388  *    even if the table was marked as auto rehashable.  The caller also must
389  *    not call silc_hash_table_rehash while traversing the table.
390  *
391  ***/
392 void silc_hash_table_foreach(SilcHashTable ht, SilcHashForeach foreach,
393                              void *user_context);
394
395 /****f* silcutil/SilcHashTableAPI/silc_hash_table_rehash
396  *
397  * SYNOPSIS
398  *
399  *    void silc_hash_table_rehash(SilcHashTable ht, SilcUInt32 new_size);
400  *
401  * DESCRIPTION
402  *
403  *    Rehashs the hash table. The size of the new hash table is provided
404  *    as `new_size'. If the `new_size' is zero then this routine will make
405  *    the new table of a suitable size. Note that this operation may be
406  *    very slow.
407  *
408  ***/
409 void silc_hash_table_rehash(SilcHashTable ht, SilcUInt32 new_size);
410
411 /****f* silcutil/SilcHashTableAPI/silc_hash_table_list
412  *
413  * SYNOPSIS
414  *
415  *    void silc_hash_table_list(SilcHashTable ht, SilcHashTableList *htl);
416  *
417  * DESCRIPTION
418  *
419  *    Prepares the `htl' SilcHashTableList sent as argument to be used in the
420  *    hash table traversing with the silc_hash_table_get.  After the hash
421  *    table traversing is completed the silc_hash_table_list_reset must be
422  *    called.
423  *
424  * NOTES
425  *
426  *    The hash table will not be rehashed during the traversing of the list,
427  *    even if the table was marked as auto rehashable.  The caller also must
428  *    not call silc_hash_table_rehash while traversing the list.
429  *
430  ***/
431 void silc_hash_table_list(SilcHashTable ht, SilcHashTableList *htl);
432
433 /****f* silcutil/SilcHashTableAPI/silc_hash_table_list_reset
434  *
435  * SYNOPSIS
436  *
437  *    void silc_hash_table_list_reset(SilcHashTableList *htl);
438  *
439  * DESCRIPTION
440  *
441  *    Resets the `htl' SilcHashTableList.  This must be called after the
442  *    hash table traversing is completed.
443  *
444  ***/
445 void silc_hash_table_list_reset(SilcHashTableList *htl);
446
447 /****f* silcutil/SilcHashTableAPI/silc_hash_table_get
448  *
449  * SYNOPSIS
450  *
451  *    bool silc_hash_table_get(SilcHashTableList *htl, void **key, 
452  *                             void **context);
453  *
454  * DESCRIPTION
455  *
456  *    Returns always the next entry in the hash table into the `key' and
457  *    `context' and TRUE.  If this returns FALSE then there are no anymore
458  *    any entrys.
459  *
460  ***/
461 bool silc_hash_table_get(SilcHashTableList *htl, void **key, void **context);
462
463
464 /* Extended hash table interface (same as above but with specific
465    hash and comparison functions). */
466
467 /****f* silcutil/SilcHashTableAPI/silc_hash_table_add_ext
468  *
469  * SYNOPSIS
470  *
471  *    void silc_hash_table_add_ext(SilcHashTable ht, void *key, void *context,
472  *                                 SilcHashFunction hash, 
473  *                                 void *hash_user_context);
474  *
475  * DESCRIPTION
476  *
477  *    Adds new entry to the hash table. The `key' is hashed using the
478  *    hash function and the both `key' and `context' will be saved to the
479  *    hash table. This function quarantees that the entry is always added
480  *    to the hash table reliably (it is collision resistant).
481  *
482  *    The `hash' and `hash_user_context' are application specified hash
483  *    function. If not provided the hash table's default is used.
484  *
485  ***/
486 void silc_hash_table_add_ext(SilcHashTable ht, void *key, void *context,
487                              SilcHashFunction hash, void *hash_user_context);
488
489 /****f* silcutil/SilcHashTableAPI/silc_hash_table_replace_ext
490  *
491  * SYNOPSIS
492  *
493  *    void silc_hash_table_replace_ext(SilcHashTable ht, void *key, 
494  *                                     void *context,
495  *                                     SilcHashFunction hash, 
496  *                                     void *hash_user_context);
497  *
498  * DESCRIPTION
499  *
500  *    Same as silc_hash_table_add_ext but if the `key' already exists in the
501  *    hash table the old key and the old context will be replaced with the
502  *    `key' and the `context. The destructor function will be called for the
503  *    replaced key and context.
504  *
505  *    The `hash' and `hash_user_context' are application specified hash
506  *    function. If not provided the hash table's default is used.
507  *
508  ***/
509 void silc_hash_table_replace_ext(SilcHashTable ht, void *key, void *context,
510                                  SilcHashFunction hash, 
511                                  void *hash_user_context);
512
513 /****f* silcutil/SilcHashTableAPI/silc_hash_table_del_ext
514  *
515  * SYNOPSIS
516  *
517  *    bool silc_hash_table_del_ext(SilcHashTable ht, void *key,
518  *                                 SilcHashFunction hash, 
519  *                                 void *hash_user_context,
520  *                                 SilcHashCompare compare, 
521  *                                 void *compare_user_context,
522  *                                 SilcHashDestructor destructor,
523  *                                 void *destructor_user_context);
524  *
525  * DESCRIPTION
526  *
527  *    Removes the entry from the hash table by the provided `key'. This will
528  *    call the destructor funtion for the found entry. Return TRUE if the
529  *    entry was removed successfully and FALSE otherwise.
530  *
531  *    The `hash' and `hash_user_context' are application specified hash
532  *    function. If not provided the hash table's default is used.
533  *    The `compare' and `compare_user_context' are application specified
534  *    comparing function. If not provided the hash table's default is used.
535  *    The `destructor' and `destructor_user_context' are application
536  *    specific destructor function.
537  *
538  ***/
539 bool silc_hash_table_del_ext(SilcHashTable ht, void *key,
540                              SilcHashFunction hash, 
541                              void *hash_user_context,
542                              SilcHashCompare compare, 
543                              void *compare_user_context,
544                              SilcHashDestructor destructor,
545                              void *destructor_user_context);
546
547 /****f* silcutil/SilcHashTableAPI/silc_hash_table_del_by_context_ext
548  *
549  * SYNOPSIS
550  *
551  *    bool silc_hash_table_del_by_context_ext(SilcHashTable ht, void *key, 
552  *                                            void *context,
553  *                                            SilcHashFunction hash, 
554  *                                            void *hash_user_context,
555  *                                            SilcHashCompare compare, 
556  *                                            void *compare_user_context,
557  *                                            SilcHashDestructor destructor,
558  *                                            void *destructor_user_context);
559  *
560  * DESCRIPTION
561  *
562  *    Same as silc_hash_table_del but verifies that the context associated
563  *    with the `key' matches the `context'. This is handy to use with hash
564  *    tables that may have duplicate keys. In that case the `context' may
565  *    be used to check whether the correct entry is being deleted.
566  *
567  *    The `hash' and `hash_user_context' are application specified hash
568  *    function. If not provided the hash table's default is used.
569  *    The `compare' and `compare_user_context' are application specified
570  *    comparing function. If not provided the hash table's default is used.
571  *    The `destructor' and `destructor_user_context' are application
572  *    specific destructor function.
573  *
574  ***/
575 bool silc_hash_table_del_by_context_ext(SilcHashTable ht, void *key, 
576                                         void *context,
577                                         SilcHashFunction hash, 
578                                         void *hash_user_context,
579                                         SilcHashCompare compare, 
580                                         void *compare_user_context,
581                                         SilcHashDestructor destructor,
582                                         void *destructor_user_context);
583
584 /****f* silcutil/SilcHashTableAPI/silc_hash_table_find_ext
585  *
586  * SYNOPSIS
587  *
588  *    bool silc_hash_table_find_ext(SilcHashTable ht, void *key,
589  *                                  void **ret_key, void **ret_context,
590  *                                  SilcHashFunction hash, 
591  *                                  void *hash_user_context,
592  *                                  SilcHashCompare compare, 
593  *                                  void *compare_user_context);
594  *
595  * DESCRIPTION
596  *
597  *    Finds the entry in the hash table by the provided `key' as fast as
598  *    possible. Return TRUE if the entry was found and FALSE otherwise. 
599  *    The found entry is returned to the `ret_key' and `ret_context',
600  *    respectively. If the `ret_key and `ret_context' are NULL then this
601  *    maybe used only to check whether given key exists in the table.
602  *
603  *    The `hash' and `hash_user_context' are application specified hash
604  *    function. If not provided the hash table's default is used.
605  *    The `compare' and `compare_user_context' are application specified
606  *    comparing function. If not provided the hash table's default is used.
607  *
608  ***/
609 bool silc_hash_table_find_ext(SilcHashTable ht, void *key,
610                               void **ret_key, void **ret_context,
611                               SilcHashFunction hash, 
612                               void *hash_user_context,
613                               SilcHashCompare compare, 
614                               void *compare_user_context);
615
616 /****f* silcutil/SilcHashTableAPI/silc_hash_table_find_foreach_ext
617  *
618  * SYNOPSIS
619  *
620  *    void silc_hash_table_find_foreach_ext(SilcHashTable ht, void *key,
621  *                                          SilcHashFunction hash, 
622  *                                          void *hash_user_context,
623  *                                          SilcHashCompare compare, 
624  *                                          void *compare_user_context,
625  *                                          SilcHashForeach foreach, 
626  *                                          void *foreach_user_context);
627  *
628  * DESCRIPTION
629  *
630  *    As the hash table is collision resistant it is possible to save duplicate
631  *    keys to the hash table. This function can be used to find all keys
632  *    and contexts from the hash table that are found using the `key'. The
633  *    `foreach' is called for every found key.
634  *
635  *    The `hash' and `hash_user_context' are application specified hash
636  *    function. If not provided the hash table's default is used.
637  *    The `compare' and `compare_user_context' are application specified
638  *    comparing function. If not provided the hash table's default is used.
639  *
640  * NOTES
641  *
642  *    The hash table will not be rehashed during the traversing of the table,
643  *    even if the table was marked as auto rehashable.  The caller also must
644  *    not call silc_hash_table_rehash while traversing the table.
645  *
646  ***/
647 void silc_hash_table_find_foreach_ext(SilcHashTable ht, void *key,
648                                       SilcHashFunction hash, 
649                                       void *hash_user_context,
650                                       SilcHashCompare compare, 
651                                       void *compare_user_context,
652                                       SilcHashForeach foreach, 
653                                       void *foreach_user_context);
654
655 /****f* silcutil/SilcHashTableAPI/silc_hash_table_rehash_ext
656  *
657  * SYNOPSIS
658  *
659  *    void silc_hash_table_rehash_ext(SilcHashTable ht, SilcUInt32 new_size,
660  *                                    SilcHashFunction hash, 
661  *                                    void *hash_user_context);
662  *
663  * DESCRIPTION
664  *
665  *    Rehashs the hash table. The size of the new hash table is provided
666  *    as `new_size'. If the `new_size' is zero then this routine will make
667  *    the new table of a suitable size. Note that this operation may be
668  *    very slow.
669  *
670  *    The `hash' and `hash_user_context' are application specified hash
671  *    function. If not provided the hash table's default is used.
672  *
673  ***/
674 void silc_hash_table_rehash_ext(SilcHashTable ht, SilcUInt32 new_size,
675                                 SilcHashFunction hash, 
676                                 void *hash_user_context);
677
678 #endif