blob: 04aec31ca5bb93e700bcc0eb06f1d3b96f511eb8 (
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
|
/*
* mod_vhostdb_api - virtual hosts mapping backend registration
*
* Copyright(c) 2017 Glenn Strauss gstrauss()gluelogic.com All rights reserved
* License: BSD 3-clause (same as lighttpd)
*/
#ifndef INCLUDED_MOD_VHOSTDB_API_H
#define INCLUDED_MOD_VHOSTDB_API_H
#include "first.h"
#include "base_decls.h"
#include "buffer.h"
__attribute_cold__
void http_vhostdb_dumbdata_reset (void);
typedef struct http_vhostdb_backend_t {
const char *name;
int(*query)(request_st *r, void *p_d, buffer *result);
void *p_d;
} http_vhostdb_backend_t;
__attribute_cold__
__attribute_pure__
const http_vhostdb_backend_t * http_vhostdb_backend_get (const buffer *name);
__attribute_cold__
void http_vhostdb_backend_set (const http_vhostdb_backend_t *backend);
#endif
|