|
22 | 22 | #include <ngx_log.h> |
23 | 23 |
|
24 | 24 | /* config init handler */ |
25 | | -static void * ngx_http_echo_create_loc_conf(ngx_conf_t *cf); |
26 | | -static char * ngx_http_echo_merge_loc_conf(ngx_conf_t *cf, void *parent, |
| 25 | +static void *ngx_http_echo_create_loc_conf(ngx_conf_t *cf); |
| 26 | +static char *ngx_http_echo_merge_loc_conf(ngx_conf_t *cf, void *parent, |
27 | 27 | void *child); |
28 | 28 | static void *ngx_http_echo_create_main_conf(ngx_conf_t *cf); |
29 | 29 | static ngx_int_t ngx_http_echo_post_config(ngx_conf_t *cf); |
30 | 30 |
|
31 | 31 | /* config directive handlers */ |
32 | | -static char * ngx_http_echo_echo(ngx_conf_t *cf, ngx_command_t *cmd, |
| 32 | +static char *ngx_http_echo_echo(ngx_conf_t *cf, ngx_command_t *cmd, |
33 | 33 | void *conf); |
34 | | -static char * ngx_http_echo_echo_request_body(ngx_conf_t *cf, |
| 34 | +static char *ngx_http_echo_echo_request_body(ngx_conf_t *cf, |
35 | 35 | ngx_command_t *cmd, void *conf); |
36 | | -static char * ngx_http_echo_echo_sleep(ngx_conf_t *cf, ngx_command_t *cmd, |
| 36 | +static char *ngx_http_echo_echo_sleep(ngx_conf_t *cf, ngx_command_t *cmd, |
37 | 37 | void *conf); |
38 | | -static char * ngx_http_echo_echo_flush(ngx_conf_t *cf, ngx_command_t *cmd, |
| 38 | +static char *ngx_http_echo_echo_flush(ngx_conf_t *cf, ngx_command_t *cmd, |
39 | 39 | void *conf); |
40 | | -static char * ngx_http_echo_echo_blocking_sleep(ngx_conf_t *cf, |
| 40 | +static char *ngx_http_echo_echo_blocking_sleep(ngx_conf_t *cf, |
41 | 41 | ngx_command_t *cmd, void *conf); |
42 | | -static char * ngx_http_echo_echo_reset_timer(ngx_conf_t *cf, |
| 42 | +static char *ngx_http_echo_echo_reset_timer(ngx_conf_t *cf, |
43 | 43 | ngx_command_t *cmd, void *conf); |
44 | | -static char * ngx_http_echo_echo_before_body(ngx_conf_t *cf, |
| 44 | +static char *ngx_http_echo_echo_before_body(ngx_conf_t *cf, |
45 | 45 | ngx_command_t *cmd, void *conf); |
46 | | -static char * ngx_http_echo_echo_after_body(ngx_conf_t *cf, |
| 46 | +static char *ngx_http_echo_echo_after_body(ngx_conf_t *cf, |
47 | 47 | ngx_command_t *cmd, void *conf); |
48 | | -static char * ngx_http_echo_echo_location_async(ngx_conf_t *cf, |
| 48 | +static char *ngx_http_echo_echo_location_async(ngx_conf_t *cf, |
49 | 49 | ngx_command_t *cmd, void *conf); |
50 | | -static char * ngx_http_echo_echo_location(ngx_conf_t *cf, |
| 50 | +static char *ngx_http_echo_echo_location(ngx_conf_t *cf, |
51 | 51 | ngx_command_t *cmd, void *conf); |
52 | | -static char * ngx_http_echo_echo_subrequest_async(ngx_conf_t *cf, |
| 52 | +static char *ngx_http_echo_echo_subrequest_async(ngx_conf_t *cf, |
53 | 53 | ngx_command_t *cmd, void *conf); |
54 | | -static char * ngx_http_echo_echo_subrequest(ngx_conf_t *cf, |
| 54 | +static char *ngx_http_echo_echo_subrequest(ngx_conf_t *cf, |
55 | 55 | ngx_command_t *cmd, void *conf); |
56 | | -static char * ngx_http_echo_echo_duplicate(ngx_conf_t *cf, |
| 56 | +static char *ngx_http_echo_echo_duplicate(ngx_conf_t *cf, |
57 | 57 | ngx_command_t *cmd, void *conf); |
58 | | -static char * ngx_http_echo_echo_read_request_body(ngx_conf_t *cf, |
| 58 | +static char *ngx_http_echo_echo_read_request_body(ngx_conf_t *cf, |
59 | 59 | ngx_command_t *cmd, void *conf); |
60 | | -static char * ngx_http_echo_echo_foreach_split(ngx_conf_t *cf, |
| 60 | +static char *ngx_http_echo_echo_foreach_split(ngx_conf_t *cf, |
61 | 61 | ngx_command_t *cmd, void *conf); |
62 | | -static char * ngx_http_echo_echo_end(ngx_conf_t *cf, |
| 62 | +static char *ngx_http_echo_echo_end(ngx_conf_t *cf, |
63 | 63 | ngx_command_t *cmd, void *conf); |
64 | | -static char * ngx_http_echo_echo_abort_parent(ngx_conf_t *cf, |
| 64 | +static char *ngx_http_echo_echo_abort_parent(ngx_conf_t *cf, |
65 | 65 | ngx_command_t *cmd, void *conf); |
66 | | -static char * ngx_http_echo_echo_exec(ngx_conf_t *cf, |
| 66 | +static char *ngx_http_echo_echo_exec(ngx_conf_t *cf, |
67 | 67 | ngx_command_t *cmd, void *conf); |
68 | | -static char * ngx_http_echo_helper(ngx_http_echo_opcode_t opcode, |
| 68 | +static char *ngx_http_echo_helper(ngx_http_echo_opcode_t opcode, |
69 | 69 | ngx_http_echo_cmd_category_t cat, |
70 | 70 | ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
71 | 71 |
|
|
0 commit comments