Commit a999fee9 authored by Federico G. Schwindt's avatar Federico G. Schwindt Committed by Lasse Karstensen

Expose accept_filter parameter to Linux

Disabled by default. Prompted by Rafael Zalamena
(rafaelfz at taghos dot com dot br) on varnish-dev.
parent 4fe739ee
......@@ -30,21 +30,23 @@
/*lint -save -e525 -e539 */
#ifdef HAVE_ACCEPT_FILTERS
PARAM(
/* name */ accept_filter,
/* typ */ bool,
/* min */ NULL,
/* max */ NULL,
#if defined(HAVE_ACCEPT_FILTERS) || defined(__linux)
/* default */ "on",
#else
/* default */ "off",
#endif /* HAVE_ACCEPT_FILTERS || __linux */
/* units */ "bool",
/* flags */ MUST_RESTART,
/* s-text */
"Enable kernel accept-filters, (if available in the kernel).",
"Enable kernel accept-filters (if available in the kernel).",
/* l-text */ NULL,
/* func */ NULL
)
#endif /* HAVE_ACCEPT_FILTERS */
PARAM(
/* name */ acceptor_sleep_decay,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment