summaryrefslogtreecommitdiff
path: root/src/mod_ssi.h
diff options
context:
space:
mode:
authorstbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9>2015-09-18 15:15:18 +0000
committerstbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9>2015-09-18 15:15:18 +0000
commit8b2630a82fbecfd57fa38aebb397a755936690e5 (patch)
treea9cfcd7bb5bea87d63fc8ef81c8456a130a249bc /src/mod_ssi.h
parente57c8295ebe92b58ca3e68fa8ea8f70d4b0b4cee (diff)
downloadlighttpd-master.tar.gz
add README to point to lighttpd-1.4.x as stableHEADmaster
git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@3041 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/mod_ssi.h')
-rw-r--r--src/mod_ssi.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/mod_ssi.h b/src/mod_ssi.h
deleted file mode 100644
index 241e8320..00000000
--- a/src/mod_ssi.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef _MOD_SSI_H_
-#define _MOD_SSI_H_
-
-#include "base.h"
-#include "buffer.h"
-#include "array.h"
-
-#include "plugin.h"
-
-#ifdef HAVE_PCRE_H
-#include <pcre.h>
-#endif
-
-/* plugin config for all request/connections */
-
-typedef struct {
- array *ssi_extension;
- buffer *content_type;
-} plugin_config;
-
-typedef struct {
- PLUGIN_DATA;
-
-#ifdef HAVE_PCRE_H
- pcre *ssi_regex;
-#endif
- buffer *timefmt;
- int sizefmt;
-
- buffer *stat_fn;
-
- array *ssi_vars;
- array *ssi_cgi_env;
-
- int if_level, if_is_false_level, if_is_false, if_is_false_endif;
-
- plugin_config **config_storage;
-
- plugin_config conf;
-} plugin_data;
-
-int ssi_eval_expr(server *srv, connection *con, plugin_data *p, const char *expr);
-
-#endif