aboutsummaryrefslogtreecommitdiff
path: root/gmid.h
diff options
context:
space:
mode:
Diffstat (limited to 'gmid.h')
-rw-r--r--gmid.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/gmid.h b/gmid.h
index 6f4223e..f29c210 100644
--- a/gmid.h
+++ b/gmid.h
@@ -73,6 +73,13 @@ struct location {
TAILQ_ENTRY(location) locations;
};
+TAILQ_HEAD(envhead, envlist);
+struct envlist {
+ char *name;
+ char *value;
+ TAILQ_ENTRY(envlist) envs;
+};
+
extern TAILQ_HEAD(vhosthead, vhost) hosts;
struct vhost {
const char *domain;
@@ -89,6 +96,8 @@ struct vhost {
* settings for the vhost, then follows the "real" location
* rules as specified in the configuration. */
struct lochead locations;
+
+ struct envhead env;
};
struct etm { /* extension to mime */