diff options
Diffstat (limited to 'src/t/test_mod_simple_vhost.c')
-rw-r--r-- | src/t/test_mod_simple_vhost.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/t/test_mod_simple_vhost.c b/src/t/test_mod_simple_vhost.c index 65e4b3c4..751b98d5 100644 --- a/src/t/test_mod_simple_vhost.c +++ b/src/t/test_mod_simple_vhost.c @@ -48,3 +48,16 @@ stat_cache_entry * stat_cache_get_entry(const buffer *name) { return NULL; } +int config_plugin_values_init(server *srv, void *p_d, const config_plugin_keys_t *cpk, const char *mname) { + UNUSED(srv); + UNUSED(p_d); + UNUSED(cpk); + UNUSED(mname); + return 0; +} + +int config_check_cond(request_st *r, int context_ndx) { + UNUSED(r); + UNUSED(context_ndx); + return 0; +} |