summaryrefslogtreecommitdiff
path: root/src/mod_cml.h
blob: f47210c9c5d6aac892936275dc374ea1d33ab9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef _MOD_CACHE_H_
#define _MOD_CACHE_H_
#include "first.h"

#include "buffer.h"
#include "server.h"
#include "response.h"

#include "plugin.h"

#if defined(USE_MEMCACHED)
#include <libmemcached/memcached.h>
#endif

#define plugin_data mod_cache_plugin_data

typedef struct {
	buffer *ext;

	array  *mc_hosts;
	buffer *mc_namespace;
#if defined(USE_MEMCACHED)
	memcached_st *memc;
#endif
	buffer *power_magnet;
} plugin_config;

typedef struct {
	PLUGIN_DATA;

	buffer *basedir;
	buffer *baseurl;

	buffer *trigger_handler;

	plugin_config **config_storage;

	plugin_config conf;
} plugin_data;

int cache_parse_lua(server *srv, connection *con, plugin_data *p, buffer *fn);

#endif