annotate config @ 2:aee676aa6c1f default tip

Fixed delaying subrequests. Similar to 7fcf209d40c8 in the limit_req module, we now set wev->delayed to avoid interference with other subrequests. With 903fb1ddc07f in nginx (wev->delayed handling moved to the connection event handler, nginx 1.11.13), it will be also possible to remove wev->timedout tests and wev->timedout / wev->delayed reset after the timer expiration. These are preserved for now to make the code compatible with older nginx versions.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 29 May 2017 18:28:58 +0300
parents 3cdd7ed86819
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
1 # (C) Maxim Dounin
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
2 # Configuration for ngx_http_delay_module.
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
3
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
4 ngx_addon_name="ngx_http_delay_module"
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
5
1
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
6 if test -n "$ngx_module_link"; then
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
7
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
8 ngx_module_type=HTTP
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
9 ngx_module_name=ngx_http_delay_module
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
10 ngx_module_incs=
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
11 ngx_module_deps=
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
12 ngx_module_srcs=$ngx_addon_dir/ngx_http_delay_module.c
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
13 ngx_module_libs=
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
14
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
15 . auto/module
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
16
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
17 else
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
18
0
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
19 HTTP_MODULES="$HTTP_MODULES \
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
20 ngx_http_delay_module"
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
21
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
22 NGX_ADDON_SRCS="$NGX_ADDON_SRCS \
9777bf89da35 Delay module.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
23 $ngx_addon_dir/ngx_http_delay_module.c"
1
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
24
3cdd7ed86819 Support dynamic loading.
Maxim Dounin <mdounin@mdounin.ru>
parents: 0
diff changeset
25 fi