diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2024-03-22 14:53:19 +0400 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2024-03-22 14:53:19 +0400 |
commit | bd190d825ceeacf105a2392d88734f21df35d89a (patch) | |
tree | 730fc775cbc1730fbbfe35cf632ff76ca7981b9d /src/stream/ngx_stream.h | |
parent | 04b9bfe55d414bfed8a7aefa3162d81af26532b4 (diff) | |
download | nginx-bd190d825ceeacf105a2392d88734f21df35d89a.tar.gz nginx-bd190d825ceeacf105a2392d88734f21df35d89a.zip |
Stream: the "setfib" parameter of the "listen" directive.
The FreeBSD SO_SETFIB support.
Diffstat (limited to 'src/stream/ngx_stream.h')
-rw-r--r-- | src/stream/ngx_stream.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stream/ngx_stream.h b/src/stream/ngx_stream.h index 888715888..dc05dc5ba 100644 --- a/src/stream/ngx_stream.h +++ b/src/stream/ngx_stream.h @@ -62,6 +62,9 @@ typedef struct { int rcvbuf; int sndbuf; int type; +#if (NGX_HAVE_SETFIB) + int setfib; +#endif #if (NGX_HAVE_TCP_FASTOPEN) int fastopen; #endif |