2
0
Fork 0

Make radix implementation independent of lighty

This commit is contained in:
Stefan Bühler 2009-07-07 18:45:47 +02:00
parent c8f7ee1a3f
commit d30108b967
4 changed files with 5 additions and 3 deletions

View File

@ -27,8 +27,6 @@
#include <lighttpd/typedefs.h>
#include <lighttpd/module.h>
#include <lighttpd/radix.h>
#include <lighttpd/chunk.h>
#include <lighttpd/chunk_parser.h>

View File

@ -1,6 +1,8 @@
#ifndef _LIGHTTPD_RADIX_H_
#define _LIGHTTPD_RADIX_H_
#include <lighttpd/settings.h>
/*
* Radix tree with 32bit key, lookup, insert and remove in O(32).
* This is where the bit magic happens.

View File

@ -45,6 +45,7 @@
*/
#include <lighttpd/base.h>
#include <lighttpd/radix.h>
LI_API gboolean mod_access_init(modules *mods, module *mod);
LI_API gboolean mod_access_free(modules *mods, module *mod);

View File

@ -1,4 +1,5 @@
#include <lighttpd/base.h>
#include <lighttpd/radix.h>
RadixTree32 *radixtree32_new(guint32 root_width) {
guint32 i;