]> git.evergreen-ils.org Git - Evergreen.git/blob - OpenSRF/src/gateway/mod_ils_gateway.h
added variable arg to jsonNewObject for formatted strings
[Evergreen.git] / OpenSRF / src / gateway / mod_ils_gateway.h
1 #include "httpd.h"
2 #include "http_config.h"
3 #include "http_core.h"
4 #include "http_protocol.h"
5 #include "apr_compat.h"
6 #include "apr_strings.h"
7
8 /* our stuff */
9 #include "opensrf/transport_client.h"
10 #include "opensrf/osrf_message.h"
11 #include "opensrf/osrf_app_session.h"
12 #include "string_array.h"
13 #include "md5.h"
14 #include "objson/object.h"
15 #include "objson/json_parser.h"
16
17 #define MODULE_NAME "ils_gateway_module"
18 #define GATEWAY_CONFIG "ILSGatewayConfig"
19 #define CONFIG_CONTEXT "gateway"
20
21 #define GATEWAY_DEFAULT_CONFIG "/openils/conf/opensrf_core.xml"
22
23
24 /* our config structure */
25 typedef struct { 
26         char* configfile;  /* our bootstrap config file */
27 } ils_gateway_config;
28
29 module AP_MODULE_DECLARE_DATA ils_gateway_module;
30