From a48dadfbc119c1c0b3d913b18ece71397e8d16f1 Mon Sep 17 00:00:00 2001 From: RocFang Date: Thu, 26 May 2016 20:43:57 +0800 Subject: [PATCH] Update ngx_rtmp_core_module.c clean useless code fragments. --- ngx_rtmp_core_module.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/ngx_rtmp_core_module.c b/ngx_rtmp_core_module.c index 517e4b8..643702f 100644 --- a/ngx_rtmp_core_module.c +++ b/ngx_rtmp_core_module.c @@ -500,8 +500,7 @@ ngx_rtmp_core_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) in_port_t port; ngx_str_t *value; ngx_url_t u; - ngx_uint_t i, m; - ngx_module_t **modules; + ngx_uint_t i; struct sockaddr *sa; ngx_rtmp_listen_t *ls; struct sockaddr_in *sin; @@ -584,17 +583,6 @@ ngx_rtmp_core_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) ls->wildcard = u.wildcard; ls->ctx = cf->ctx; -#if defined(nginx_version) && nginx_version >= 1009011 - modules = cf->cycle->modules; -#else - modules = ngx_modules; -#endif - for (m = 0; modules[m]; m++) { - if (modules[m]->type != NGX_RTMP_MODULE) { - continue; - } - } - for (i = 2; i < cf->args->nelts; i++) { if (ngx_strcmp(value[i].data, "bind") == 0) {