Home
last modified time | relevance | path

Searched refs:ngx_conf_t (Results 1 – 25 of 138) sorted by relevance

123456

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_conf_file.h80 char *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
112 typedef char *(*ngx_conf_handler_pt)(ngx_conf_t *cf,
135 typedef char *(*ngx_conf_post_handler_pt) (ngx_conf_t *cf,
172 char * ngx_conf_deprecated(ngx_conf_t *cf, void *post, void *data);
173 char *ngx_conf_check_num_bounds(ngx_conf_t *cf, void *post, void *data);
268 char *ngx_conf_param(ngx_conf_t *cf);
269 char *ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename);
270 char *ngx_conf_include(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
276 void ngx_cdecl ngx_conf_log_error(ngx_uint_t level, ngx_conf_t *cf,
281 char *ngx_conf_set_str_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
[all …]
H A Dngx_conf_file.c13 static ngx_int_t ngx_conf_add_dump(ngx_conf_t *cf, ngx_str_t *filename);
14 static ngx_int_t ngx_conf_handler(ngx_conf_t *cf, ngx_int_t last);
15 static ngx_int_t ngx_conf_read_token(ngx_conf_t *cf);
63 ngx_conf_param(ngx_conf_t *cf) in ngx_conf_param()
102 ngx_conf_add_dump(ngx_conf_t *cf, ngx_str_t *filename) in ngx_conf_add_dump()
158 ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename) in ngx_conf_parse()
356 ngx_conf_handler(ngx_conf_t *cf, ngx_int_t last) in ngx_conf_handler()
503 ngx_conf_read_token(ngx_conf_t *cf) in ngx_conf_read_token()
821 ngx_conf_include(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_conf_include()
1446 ngx_conf_deprecated(ngx_conf_t *cf, void *post, void *data) in ngx_conf_deprecated()
[all …]
/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2_module.c14 static ngx_int_t ngx_http_v2_add_variables(ngx_conf_t *cf);
21 static void *ngx_http_v2_create_main_conf(ngx_conf_t *cf);
22 static char *ngx_http_v2_init_main_conf(ngx_conf_t *cf, void *conf);
23 static void *ngx_http_v2_create_srv_conf(ngx_conf_t *cf);
24 static char *ngx_http_v2_merge_srv_conf(ngx_conf_t *cf, void *parent,
26 static void *ngx_http_v2_create_loc_conf(ngx_conf_t *cf);
256 ngx_http_v2_add_variables(ngx_conf_t *cf) in ngx_http_v2_add_variables()
316 ngx_http_v2_create_main_conf(ngx_conf_t *cf) in ngx_http_v2_create_main_conf()
332 ngx_http_v2_init_main_conf(ngx_conf_t *cf, void *conf) in ngx_http_v2_init_main_conf()
343 ngx_http_v2_create_srv_conf(ngx_conf_t *cf) in ngx_http_v2_create_srv_conf()
[all …]
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_config.h25 ngx_int_t (*preconfiguration)(ngx_conf_t *cf);
26 ngx_int_t (*postconfiguration)(ngx_conf_t *cf);
28 void *(*create_main_conf)(ngx_conf_t *cf);
29 char *(*init_main_conf)(ngx_conf_t *cf, void *conf);
31 void *(*create_srv_conf)(ngx_conf_t *cf);
32 char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev, void *conf);
34 void *(*create_loc_conf)(ngx_conf_t *cf);
35 char *(*merge_loc_conf)(ngx_conf_t *cf, void *prev, void *conf);
H A Dngx_http_variables.h49 ngx_http_variable_t *ngx_http_add_variable(ngx_conf_t *cf, ngx_str_t *name,
51 ngx_int_t ngx_http_get_variable_index(ngx_conf_t *cf, ngx_str_t *name);
87 ngx_http_regex_t *ngx_http_regex_compile(ngx_conf_t *cf,
108 ngx_int_t ngx_http_variables_add_core_vars(ngx_conf_t *cf);
109 ngx_int_t ngx_http_variables_init_vars(ngx_conf_t *cf);
H A Dngx_http.c14 static ngx_int_t ngx_http_init_phases(ngx_conf_t *cf,
18 static ngx_int_t ngx_http_init_phase_handlers(ngx_conf_t *cf,
21 static ngx_int_t ngx_http_add_addresses(ngx_conf_t *cf,
24 static ngx_int_t ngx_http_add_address(ngx_conf_t *cf,
27 static ngx_int_t ngx_http_add_server(ngx_conf_t *cf,
30 static char *ngx_http_merge_servers(ngx_conf_t *cf,
33 static char *ngx_http_merge_locations(ngx_conf_t *cf,
36 static ngx_int_t ngx_http_init_locations(ngx_conf_t *cf,
52 static ngx_int_t ngx_http_server_names(ngx_conf_t *cf,
124 ngx_conf_t pcf; in ngx_http_block()
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_degradation_module.c30 static void *ngx_http_degradation_create_main_conf(ngx_conf_t *cf);
31 static void *ngx_http_degradation_create_loc_conf(ngx_conf_t *cf);
32 static char *ngx_http_degradation_merge_loc_conf(ngx_conf_t *cf, void *parent,
34 static char *ngx_http_degradation(ngx_conf_t *cf, ngx_command_t *cmd,
36 static ngx_int_t ngx_http_degradation_init(ngx_conf_t *cf);
155 ngx_http_degradation_create_main_conf(ngx_conf_t *cf) in ngx_http_degradation_create_main_conf()
169 ngx_http_degradation_create_loc_conf(ngx_conf_t *cf) in ngx_http_degradation_create_loc_conf()
185 ngx_http_degradation_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) in ngx_http_degradation_merge_loc_conf()
197 ngx_http_degradation(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_http_degradation()
228 ngx_http_degradation_init(ngx_conf_t *cf) in ngx_http_degradation_init()
H A Dngx_http_mirror_module.c27 static void *ngx_http_mirror_create_loc_conf(ngx_conf_t *cf);
28 static char *ngx_http_mirror_merge_loc_conf(ngx_conf_t *cf, void *parent,
30 static char *ngx_http_mirror(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
31 static ngx_int_t ngx_http_mirror_init(ngx_conf_t *cf);
179 ngx_http_mirror_create_loc_conf(ngx_conf_t *cf) in ngx_http_mirror_create_loc_conf()
196 ngx_http_mirror_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) in ngx_http_mirror_merge_loc_conf()
209 ngx_http_mirror(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_http_mirror()
249 ngx_http_mirror_init(ngx_conf_t *cf) in ngx_http_mirror_init()
H A Dngx_http_rewrite_module.c23 static void *ngx_http_rewrite_create_loc_conf(ngx_conf_t *cf);
24 static char *ngx_http_rewrite_merge_loc_conf(ngx_conf_t *cf,
26 static ngx_int_t ngx_http_rewrite_init(ngx_conf_t *cf);
32 static char *ngx_http_rewrite_if(ngx_conf_t *cf, ngx_command_t *cmd,
34 static char * ngx_http_rewrite_if_condition(ngx_conf_t *cf,
36 static char *ngx_http_rewrite_variable(ngx_conf_t *cf,
38 static char *ngx_http_rewrite_set(ngx_conf_t *cf, ngx_command_t *cmd,
40 static char * ngx_http_rewrite_value(ngx_conf_t *cf,
222 ngx_http_rewrite_create_loc_conf(ngx_conf_t *cf) in ngx_http_rewrite_create_loc_conf()
272 ngx_http_rewrite_init(ngx_conf_t *cf) in ngx_http_rewrite_init()
[all …]
H A Dngx_http_auth_request_module.c40 static void *ngx_http_auth_request_create_conf(ngx_conf_t *cf);
41 static char *ngx_http_auth_request_merge_conf(ngx_conf_t *cf,
43 static ngx_int_t ngx_http_auth_request_init(ngx_conf_t *cf);
44 static char *ngx_http_auth_request(ngx_conf_t *cf, ngx_command_t *cmd,
46 static char *ngx_http_auth_request_set(ngx_conf_t *cf, ngx_command_t *cmd,
303 ngx_http_auth_request_create_conf(ngx_conf_t *cf) in ngx_http_auth_request_create_conf()
325 ngx_http_auth_request_merge_conf(ngx_conf_t *cf, void *parent, void *child) in ngx_http_auth_request_merge_conf()
338 ngx_http_auth_request_init(ngx_conf_t *cf) in ngx_http_auth_request_init()
357 ngx_http_auth_request(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_http_auth_request()
383 ngx_http_auth_request_set(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_http_auth_request_set()
H A Dngx_http_browser_module.c59 static ngx_int_t ngx_http_browser_add_variables(ngx_conf_t *cf);
60 static void *ngx_http_browser_create_conf(ngx_conf_t *cf);
61 static char *ngx_http_browser_merge_conf(ngx_conf_t *cf, void *parent,
65 static char *ngx_http_modern_browser(ngx_conf_t *cf, ngx_command_t *cmd,
67 static char *ngx_http_ancient_browser(ngx_conf_t *cf, ngx_command_t *cmd,
69 static char *ngx_http_modern_browser_value(ngx_conf_t *cf, ngx_command_t *cmd,
398 ngx_http_browser_add_variables(ngx_conf_t *cf) in ngx_http_browser_add_variables()
418 ngx_http_browser_create_conf(ngx_conf_t *cf) in ngx_http_browser_create_conf()
444 ngx_http_browser_merge_conf(ngx_conf_t *cf, void *parent, void *child) in ngx_http_browser_merge_conf()
538 ngx_http_modern_browser(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_http_modern_browser()
[all …]
H A Dngx_http_userid_filter_module.c55 static ngx_int_t ngx_http_userid_add_variables(ngx_conf_t *cf);
56 static ngx_int_t ngx_http_userid_init(ngx_conf_t *cf);
57 static void *ngx_http_userid_create_conf(ngx_conf_t *cf);
58 static char *ngx_http_userid_merge_conf(ngx_conf_t *cf, void *parent,
65 static char *ngx_http_userid_mark(ngx_conf_t *cf, ngx_command_t *cmd,
610 ngx_http_userid_add_variables(ngx_conf_t *cf) in ngx_http_userid_add_variables()
649 ngx_http_userid_create_conf(ngx_conf_t *cf) in ngx_http_userid_create_conf()
706 ngx_http_userid_init(ngx_conf_t *cf) in ngx_http_userid_init()
716 ngx_http_userid_domain(ngx_conf_t *cf, void *post, void *data) in ngx_http_userid_domain()
743 ngx_http_userid_path(ngx_conf_t *cf, void *post, void *data) in ngx_http_userid_path()
[all …]
H A Dngx_http_addition_filter_module.c27 static void *ngx_http_addition_create_conf(ngx_conf_t *cf);
28 static char *ngx_http_addition_merge_conf(ngx_conf_t *cf, void *parent,
30 static ngx_int_t ngx_http_addition_filter_init(ngx_conf_t *cf);
201 ngx_http_addition_filter_init(ngx_conf_t *cf) in ngx_http_addition_filter_init()
214 ngx_http_addition_create_conf(ngx_conf_t *cf) in ngx_http_addition_create_conf()
237 ngx_http_addition_merge_conf(ngx_conf_t *cf, void *parent, void *child) in ngx_http_addition_merge_conf()
H A Dngx_http_referer_module.c35 static ngx_int_t ngx_http_referer_add_variables(ngx_conf_t *cf);
36 static void * ngx_http_referer_create_conf(ngx_conf_t *cf);
37 static char * ngx_http_referer_merge_conf(ngx_conf_t *cf, void *parent,
39 static char *ngx_http_valid_referers(ngx_conf_t *cf, ngx_command_t *cmd,
41 static ngx_int_t ngx_http_add_referer(ngx_conf_t *cf,
43 static ngx_int_t ngx_http_add_regex_referer(ngx_conf_t *cf,
46 static ngx_int_t ngx_http_add_regex_server_name(ngx_conf_t *cf,
271 ngx_http_referer_add_variables(ngx_conf_t *cf) in ngx_http_referer_add_variables()
288 ngx_http_referer_create_conf(ngx_conf_t *cf) in ngx_http_referer_create_conf()
320 ngx_http_referer_merge_conf(ngx_conf_t *cf, void *parent, void *child) in ngx_http_referer_merge_conf()
[all …]
H A Dngx_http_geoip_module.c81 static ngx_int_t ngx_http_geoip_add_variables(ngx_conf_t *cf);
82 static void *ngx_http_geoip_create_conf(ngx_conf_t *cf);
83 static char *ngx_http_geoip_init_conf(ngx_conf_t *cf, void *conf);
84 static char *ngx_http_geoip_country(ngx_conf_t *cf, ngx_command_t *cmd,
86 static char *ngx_http_geoip_org(ngx_conf_t *cf, ngx_command_t *cmd,
88 static char *ngx_http_geoip_city(ngx_conf_t *cf, ngx_command_t *cmd,
90 static char *ngx_http_geoip_proxy(ngx_conf_t *cf, ngx_command_t *cmd,
622 ngx_http_geoip_add_variables(ngx_conf_t *cf) in ngx_http_geoip_add_variables()
641 ngx_http_geoip_create_conf(ngx_conf_t *cf) in ngx_http_geoip_create_conf()
666 ngx_http_geoip_init_conf(ngx_conf_t *cf, void *conf) in ngx_http_geoip_init_conf()
[all …]
H A Dngx_http_realip_module.c40 static char *ngx_http_realip_from(ngx_conf_t *cf, ngx_command_t *cmd,
42 static char *ngx_http_realip(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
43 static void *ngx_http_realip_create_loc_conf(ngx_conf_t *cf);
44 static char *ngx_http_realip_merge_loc_conf(ngx_conf_t *cf,
46 static ngx_int_t ngx_http_realip_add_variables(ngx_conf_t *cf);
47 static ngx_int_t ngx_http_realip_init(ngx_conf_t *cf);
316 ngx_http_realip_from(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_http_realip_from()
419 ngx_http_realip(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_http_realip()
455 ngx_http_realip_create_loc_conf(ngx_conf_t *cf) in ngx_http_realip_create_loc_conf()
502 ngx_http_realip_add_variables(ngx_conf_t *cf) in ngx_http_realip_add_variables()
[all …]
/f-stack/app/nginx-1.16.1/src/event/
H A Dngx_event_openssl.h165 ngx_int_t ngx_ssl_certificates(ngx_conf_t *cf, ngx_ssl_t *ssl,
167 ngx_int_t ngx_ssl_certificate(ngx_conf_t *cf, ngx_ssl_t *ssl,
174 ngx_int_t ngx_ssl_client_certificate(ngx_conf_t *cf, ngx_ssl_t *ssl,
176 ngx_int_t ngx_ssl_trusted_certificate(ngx_conf_t *cf, ngx_ssl_t *ssl,
178 ngx_int_t ngx_ssl_crl(ngx_conf_t *cf, ngx_ssl_t *ssl, ngx_str_t *crl);
179 ngx_int_t ngx_ssl_stapling(ngx_conf_t *cf, ngx_ssl_t *ssl,
181 ngx_int_t ngx_ssl_stapling_resolver(ngx_conf_t *cf, ngx_ssl_t *ssl,
186 ngx_array_t *ngx_ssl_preserve_passwords(ngx_conf_t *cf,
190 ngx_int_t ngx_ssl_early_data(ngx_conf_t *cf, ngx_ssl_t *ssl,
192 ngx_int_t ngx_ssl_client_session_cache(ngx_conf_t *cf, ngx_ssl_t *ssl,
[all …]
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_variables.h49 ngx_stream_variable_t *ngx_stream_add_variable(ngx_conf_t *cf, ngx_str_t *name,
51 ngx_int_t ngx_stream_get_variable_index(ngx_conf_t *cf, ngx_str_t *name);
84 ngx_stream_regex_t *ngx_stream_regex_compile(ngx_conf_t *cf,
105 ngx_int_t ngx_stream_variables_add_core_vars(ngx_conf_t *cf);
106 ngx_int_t ngx_stream_variables_init_vars(ngx_conf_t *cf);
H A Dngx_stream_realip_module.c28 static char *ngx_stream_realip_from(ngx_conf_t *cf, ngx_command_t *cmd,
30 static void *ngx_stream_realip_create_srv_conf(ngx_conf_t *cf);
31 static char *ngx_stream_realip_merge_srv_conf(ngx_conf_t *cf, void *parent,
33 static ngx_int_t ngx_stream_realip_add_variables(ngx_conf_t *cf);
34 static ngx_int_t ngx_stream_realip_init(ngx_conf_t *cf);
177 ngx_stream_realip_from(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_stream_realip_from()
280 ngx_stream_realip_create_srv_conf(ngx_conf_t *cf) in ngx_stream_realip_create_srv_conf()
300 ngx_stream_realip_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child) in ngx_stream_realip_merge_srv_conf()
314 ngx_stream_realip_add_variables(ngx_conf_t *cf) in ngx_stream_realip_add_variables()
333 ngx_stream_realip_init(ngx_conf_t *cf) in ngx_stream_realip_init()
H A Dngx_stream.c15 static ngx_int_t ngx_stream_init_phases(ngx_conf_t *cf,
17 static ngx_int_t ngx_stream_init_phase_handlers(ngx_conf_t *cf,
19 static ngx_int_t ngx_stream_add_ports(ngx_conf_t *cf, ngx_array_t *ports,
25 static ngx_int_t ngx_stream_add_addrs6(ngx_conf_t *cf,
74 ngx_stream_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_stream_block()
78 ngx_conf_t pcf; in ngx_stream_block()
322 ngx_stream_init_phase_handlers(ngx_conf_t *cf, in ngx_stream_init_phase_handlers()
381 ngx_stream_add_ports(ngx_conf_t *cf, ngx_array_t *ports, in ngx_stream_add_ports()
439 ngx_stream_optimize_servers(ngx_conf_t *cf, ngx_array_t *ports) in ngx_stream_optimize_servers()
555 ngx_stream_add_addrs(ngx_conf_t *cf, ngx_stream_port_t *stport, in ngx_stream_add_addrs()
[all …]
H A Dngx_stream_core_module.c13 static ngx_int_t ngx_stream_core_preconfiguration(ngx_conf_t *cf);
14 static void *ngx_stream_core_create_main_conf(ngx_conf_t *cf);
15 static char *ngx_stream_core_init_main_conf(ngx_conf_t *cf, void *conf);
16 static void *ngx_stream_core_create_srv_conf(ngx_conf_t *cf);
21 static char *ngx_stream_core_server(ngx_conf_t *cf, ngx_command_t *cmd,
23 static char *ngx_stream_core_listen(ngx_conf_t *cf, ngx_command_t *cmd,
351 ngx_stream_core_preconfiguration(ngx_conf_t *cf) in ngx_stream_core_preconfiguration()
358 ngx_stream_core_create_main_conf(ngx_conf_t *cf) in ngx_stream_core_create_main_conf()
388 ngx_stream_core_init_main_conf(ngx_conf_t *cf, void *conf) in ngx_stream_core_init_main_conf()
407 ngx_stream_core_create_srv_conf(ngx_conf_t *cf) in ngx_stream_core_create_srv_conf()
[all …]
H A Dngx_stream.h237 ngx_int_t (*preconfiguration)(ngx_conf_t *cf);
238 ngx_int_t (*postconfiguration)(ngx_conf_t *cf);
240 void *(*create_main_conf)(ngx_conf_t *cf);
241 char *(*init_main_conf)(ngx_conf_t *cf, void *conf);
243 void *(*create_srv_conf)(ngx_conf_t *cf);
244 char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev,
/f-stack/app/nginx-1.16.1/src/mail/
H A Dngx_mail_core_module.c14 static void *ngx_mail_core_create_main_conf(ngx_conf_t *cf);
15 static void *ngx_mail_core_create_srv_conf(ngx_conf_t *cf);
16 static char *ngx_mail_core_merge_srv_conf(ngx_conf_t *cf, void *parent,
18 static char *ngx_mail_core_server(ngx_conf_t *cf, ngx_command_t *cmd,
20 static char *ngx_mail_core_listen(ngx_conf_t *cf, ngx_command_t *cmd,
22 static char *ngx_mail_core_protocol(ngx_conf_t *cf, ngx_command_t *cmd,
24 static char *ngx_mail_core_error_log(ngx_conf_t *cf, ngx_command_t *cmd,
26 static char *ngx_mail_core_resolver(ngx_conf_t *cf, ngx_command_t *cmd,
129 ngx_mail_core_create_main_conf(ngx_conf_t *cf) in ngx_mail_core_create_main_conf()
156 ngx_mail_core_create_srv_conf(ngx_conf_t *cf) in ngx_mail_core_create_srv_conf()
[all …]
H A Dngx_mail.c14 static char *ngx_mail_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
15 static ngx_int_t ngx_mail_add_ports(ngx_conf_t *cf, ngx_array_t *ports,
17 static char *ngx_mail_optimize_servers(ngx_conf_t *cf, ngx_array_t *ports);
18 static ngx_int_t ngx_mail_add_addrs(ngx_conf_t *cf, ngx_mail_port_t *mport,
21 static ngx_int_t ngx_mail_add_addrs6(ngx_conf_t *cf, ngx_mail_port_t *mport,
67 ngx_mail_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in ngx_mail_block()
71 ngx_conf_t pcf; in ngx_mail_block()
225 ngx_mail_add_ports(ngx_conf_t *cf, ngx_array_t *ports, in ngx_mail_add_ports()
279 ngx_mail_optimize_servers(ngx_conf_t *cf, ngx_array_t *ports) in ngx_mail_optimize_servers()
388 ngx_mail_add_addrs(ngx_conf_t *cf, ngx_mail_port_t *mport, in ngx_mail_add_addrs()
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/perl/
H A Dngx_http_perl_module.c39 static char *ngx_http_perl_init_interpreter(ngx_conf_t *cf,
49 static ngx_int_t ngx_http_perl_preconfiguration(ngx_conf_t *cf);
50 static void *ngx_http_perl_create_main_conf(ngx_conf_t *cf);
51 static char *ngx_http_perl_init_main_conf(ngx_conf_t *cf, void *conf);
52 static void *ngx_http_perl_create_loc_conf(ngx_conf_t *cf);
548 ngx_http_perl_create_interpreter(ngx_conf_t *cf, in ngx_http_perl_create_interpreter()
797 ngx_http_perl_create_main_conf(ngx_conf_t *cf) in ngx_http_perl_create_main_conf()
814 ngx_http_perl_init_main_conf(ngx_conf_t *cf, void *conf) in ngx_http_perl_init_main_conf()
853 ngx_http_perl_preconfiguration(ngx_conf_t *cf) in ngx_http_perl_preconfiguration()
880 ngx_http_perl_create_loc_conf(ngx_conf_t *cf) in ngx_http_perl_create_loc_conf()
[all …]

123456