blob: a9fd74d212bae41bada1b5b608f7a450660deb14 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#ifndef WSGI_SERVER_H
#define WSGI_SERVER_H
/* ------------------------------------------------------------------------- */
/*
* Copyright 2007-2014 GRAHAM DUMPLETON
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* ------------------------------------------------------------------------- */
#include "wsgi_python.h"
#include "wsgi_apache.h"
/* ------------------------------------------------------------------------- */
extern server_rec *wsgi_server;
extern pid_t wsgi_parent_pid;
extern const char *wsgi_daemon_group;
/* New Relic monitoring agent. */
extern const char *wsgi_newrelic_config_file;
extern const char *wsgi_newrelic_environment;
/* Python interpreter state. */
extern PyThreadState *wsgi_main_tstate;
typedef struct {
const char *location;
const char *application;
ap_regex_t *regexp;
const char *process_group;
const char *application_group;
const char *callable_object;
int pass_authorization;
} WSGIAliasEntry;
typedef struct {
const char *handler_script;
const char *process_group;
const char *application_group;
const char *callable_object;
const char *pass_authorization;
} WSGIScriptFile;
typedef struct {
apr_pool_t *pool;
apr_array_header_t *alias_list;
const char *socket_prefix;
apr_lockmech_e lock_mechanism;
int verbose_debugging;
apr_array_header_t *python_warnings;
int python_optimize;
int py3k_warning_flag;
int dont_write_bytecode;
const char *lang;
const char *locale;
const char *python_home;
const char *python_path;
const char *python_eggs;
const char *python_hash_seed;
int restrict_embedded;
int restrict_stdin;
int restrict_stdout;
int restrict_signal;
int case_sensitivity;
apr_table_t *restrict_process;
const char *process_group;
const char *application_group;
const char *callable_object;
WSGIScriptFile *dispatch_script;
int pass_apache_request;
int pass_authorization;
int script_reloading;
int error_override;
int chunked_request;
int map_head_to_get;
int enable_sendfile;
apr_hash_t *handler_scripts;
int server_metrics;
const char *newrelic_config_file;
const char *newrelic_environment;
} WSGIServerConfig;
extern WSGIServerConfig *wsgi_server_config;
extern WSGIScriptFile *newWSGIScriptFile(apr_pool_t *p);
extern WSGIServerConfig *newWSGIServerConfig(apr_pool_t *p);
extern apr_pool_t *wsgi_daemon_pool;
/* ------------------------------------------------------------------------- */
#endif
/* vi: set sw=4 expandtab : */
|