diff options
author | Vladimir Homutov <vl@nginx.com> | 2015-06-09 13:00:45 +0300 |
---|---|---|
committer | Vladimir Homutov <vl@nginx.com> | 2015-06-09 13:00:45 +0300 |
commit | d56b84b7834c250ac2f7506517fe076b919841c0 (patch) | |
tree | 8b13adc1073db325b57950002672469b7210805a /src/stream/ngx_stream_upstream_zone_module.c | |
parent | c81d7ec1588a68602fbd26d4f92c6287c3e56b44 (diff) | |
download | nginx-d56b84b7834c250ac2f7506517fe076b919841c0.tar.gz nginx-d56b84b7834c250ac2f7506517fe076b919841c0.zip |
Stream: added postconfiguration method to stream modules.
Diffstat (limited to 'src/stream/ngx_stream_upstream_zone_module.c')
-rw-r--r-- | src/stream/ngx_stream_upstream_zone_module.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stream/ngx_stream_upstream_zone_module.c b/src/stream/ngx_stream_upstream_zone_module.c index 95a778f10..6025aee7d 100644 --- a/src/stream/ngx_stream_upstream_zone_module.c +++ b/src/stream/ngx_stream_upstream_zone_module.c @@ -32,6 +32,8 @@ static ngx_command_t ngx_stream_upstream_zone_commands[] = { static ngx_stream_module_t ngx_stream_upstream_zone_module_ctx = { + NULL, /* postconfiguration */ + NULL, /* create main configuration */ NULL, /* init main configuration */ |