summaryrefslogtreecommitdiff
path: root/src/mod_cml.h
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2005-07-07 22:39:14 +0000
committerJan Kneschke <jan@kneschke.de>2005-07-07 22:39:14 +0000
commit6d60bcb0400d5952719782cba88b0462adf4cc17 (patch)
tree1eed48bb2e8fe308a0fe58e24064f33218c8d9da /src/mod_cml.h
parent3c383fe3df48d091428095053c09720a150cc683 (diff)
downloadlighttpd-git-6d60bcb0400d5952719782cba88b0462adf4cc17.tar.gz
use log_* functions for debugging and don't segfault on evaluation
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.3.x@428 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/mod_cml.h')
-rw-r--r--src/mod_cml.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mod_cml.h b/src/mod_cml.h
index b8031e37..2185e8dc 100644
--- a/src/mod_cml.h
+++ b/src/mod_cml.h
@@ -78,6 +78,10 @@ int cache_parse(server *srv, connection *con, plugin_data *p, buffer *fn);
int tnode_prepare_long(tnode *t);
int tnode_prepare_string(tnode *t);
+tnode_val_array *tnode_val_array_init();
+void tnode_val_array_free(tnode_val_array *tva);
+void tnode_val_array_reset(tnode_val_array *tva);
+
#define CACHE_FUNC_PROTO(x) int x(server *srv, connection *con, plugin_data *p, tnode *result)
CACHE_FUNC_PROTO(f_unix_time_now);