Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-07-05 17:49:16 +0400
committerIgor Sysoev <igor@sysoev.ru>2010-07-05 17:49:16 +0400
commit0bd7a7d8941087929b270f7862f1bbacc69282c1 (patch)
tree42c25fc6de1079f8b91b0cd16160b288c44d3705 /src/http/ngx_http.c
parent1a5d7553da68081ffa3e0a5b89ee844fbd8a7f14 (diff)
listen setfib=X
Diffstat (limited to 'src/http/ngx_http.c')
-rw-r--r--src/http/ngx_http.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c
index 84867887d..9f9294ce5 100644
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -1720,6 +1720,10 @@ ngx_http_add_listening(ngx_conf_t *cf, ngx_http_conf_addr_t *addr)
ls->ipv6only = addr->opt.ipv6only;
#endif
+#if (NGX_HAVE_SETFIB)
+ ls->setfib = addr->opt.setfib;
+#endif
+
return ls;
}