Changeset 1569

Show
Ignore:
Timestamp:
06/18/08 07:15:17 (4 months ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r1568 r1569  
     12008-06-18  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/Makefile.am (libcherokeeinclude_HEADERS), 
     4        cherokee/cherokee.h: The avl.h header file will be included from 
     5        <cherokee/cherokee.h>. 
     6 
    172008-06-17  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
    28 
  • cherokee/trunk/cherokee/Makefile.am

    r1558 r1569  
    11001100post.h \ 
    11011101trace.h \ 
     1102avl.h \ 
    11021103\ 
    11031104config_node.h \ 
  • cherokee/trunk/cherokee/avl.h

    r1375 r1569  
    5656ret_t cherokee_avl_get       (cherokee_avl_t *avl, cherokee_buffer_t *key, void **value); 
    5757 
    58 ret_t cherokee_avl_add_ptr   (cherokee_avl_t *avl,        const char *key, void  *value); 
    59 ret_t cherokee_avl_del_ptr   (cherokee_avl_t *avl,        const char *key, void **value); 
    60 ret_t cherokee_avl_get_ptr   (cherokee_avl_t *avl,        const char *key, void **value); 
     58ret_t cherokee_avl_add_ptr   (cherokee_avl_t *avl, const char *key, void  *value); 
     59ret_t cherokee_avl_del_ptr   (cherokee_avl_t *avl, const char *key, void **value); 
     60ret_t cherokee_avl_get_ptr   (cherokee_avl_t *avl, const char *key, void **value); 
    6161 
    6262ret_t cherokee_avl_len       (cherokee_avl_t *avl, size_t *len); 
  • cherokee/trunk/cherokee/cherokee.h

    r1430 r1569  
    4545#include <cherokee/resolv_cache.h> 
    4646#include <cherokee/post.h> 
     47#include <cherokee/avl.h> 
    4748#include <cherokee/trace.h> 
    4849