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 | 04b9bfe55d414bfed8a7aefa3162d81af26532b4 (patch) | |
| tree | d1bc876d39ea97a71f3a880c237165735d4c70c3 /src/stream/ngx_stream.h | |
| parent | 03eba69013eb4f4499a5c09f72338ab95ce00801 (diff) | |
| download | nginx-04b9bfe55d414bfed8a7aefa3162d81af26532b4.tar.gz nginx-04b9bfe55d414bfed8a7aefa3162d81af26532b4.tar.bz2 | |
Stream: the "accept_filter" parameter of the "listen" directive.
The FreeBSD accept filters support.
Diffstat (limited to 'src/stream/ngx_stream.h')
| -rw-r--r-- | src/stream/ngx_stream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stream/ngx_stream.h b/src/stream/ngx_stream.h index 2221a14c9..888715888 100644 --- a/src/stream/ngx_stream.h +++ b/src/stream/ngx_stream.h @@ -70,6 +70,10 @@ typedef struct { int tcp_keepintvl; int tcp_keepcnt; #endif + +#if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER) + char *accept_filter; +#endif } ngx_stream_listen_opt_t; |
