diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2018-03-25 03:45:05 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2018-04-08 22:22:23 -0400 |
commit | 04d76e7afd8401c242aca24bed7f2c93a25238f4 (patch) | |
tree | ae96e9a6654d14850b91c9397030df6c9500fb6f /src/http_vhostdb.h | |
parent | fefc82153a0260635807ae427943d6fed3238809 (diff) | |
download | lighttpd-git-04d76e7afd8401c242aca24bed7f2c93a25238f4.tar.gz |
[core] some header cleanup
provide standard types in first.h instead of base.h
provide lighttpd types in base_decls.h instead of settings.h
reduce headers exposed by headers for core data structures
do not expose <pcre.h> or <stdlib.h> in headers
move stat_cache_entry to stat_cache.h
reduce use of "server.h" and "base.h" in headers
Diffstat (limited to 'src/http_vhostdb.h')
-rw-r--r-- | src/http_vhostdb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http_vhostdb.h b/src/http_vhostdb.h index 4f9f5b0e..01036077 100644 --- a/src/http_vhostdb.h +++ b/src/http_vhostdb.h @@ -2,7 +2,8 @@ #define _HTTP_VHOST_H_ #include "first.h" -#include "base.h" +#include "base_decls.h" +#include "buffer.h" void http_vhostdb_dumbdata_reset (void); |