Return to mod_ssi.h CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / src |
version 1.1.1.1, 2013/10/14 10:32:47 | version 1.1.1.2, 2016/11/02 10:35:00 |
---|---|
Line 1 | Line 1 |
#ifndef _MOD_SSI_H_ | #ifndef _MOD_SSI_H_ |
#define _MOD_SSI_H_ | #define _MOD_SSI_H_ |
#include "first.h" | |
#include "base.h" | #include "base.h" |
#include "buffer.h" | #include "buffer.h" |
Line 7 | Line 8 |
#include "plugin.h" | #include "plugin.h" |
#ifdef HAVE_PCRE_H | |
#include <pcre.h> | |
#endif | |
/* plugin config for all request/connections */ | /* plugin config for all request/connections */ |
typedef struct { | typedef struct { |
array *ssi_extension; | array *ssi_extension; |
buffer *content_type; | buffer *content_type; |
unsigned short conditional_requests; | |
unsigned short ssi_exec; | |
} plugin_config; | } plugin_config; |
typedef struct { | typedef struct { |
PLUGIN_DATA; | PLUGIN_DATA; |
#ifdef HAVE_PCRE_H | |
pcre *ssi_regex; | |
#endif | |
buffer *timefmt; | buffer *timefmt; |
int sizefmt; | int sizefmt; |